projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Clean up an import in domains.py
[linpy.git]
/
pypol
/
coordinates.py
diff --git
a/pypol/coordinates.py
b/pypol/coordinates.py
index
d392e37
..
ceab418
100644
(file)
--- a/
pypol/coordinates.py
+++ b/
pypol/coordinates.py
@@
-4,6
+4,7
@@
import operator
from collections import OrderedDict, Mapping
from collections import OrderedDict, Mapping
+from .geometry import GeometricObject
from .linexprs import Symbol
from .linexprs import Symbol
@@
-78,7
+79,7
@@
class Coordinates:
yield symbol, func(coordinate1, coordinate2)
yield symbol, func(coordinate1, coordinate2)
-class Point(Coordinates):
+class Point(Coordinates
, GeometricObject
):
"""
This class represents points in space.
"""
"""
This class represents points in space.
"""