A computational geometry learning and experimentation tool.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from clusterview.points import Point |
|
|
|
def test_move_point(): |
|
p = Point(1, 2, 8) |
|
p.move(1, 1) |
|
|
|
assert p.x == 2 and p.y == 3
|
|
|