X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/9431c353bd39a1fbb855580ee34931a07321a0f1..6ec23dc57252ffe01aa60595fc499f580381e4a9:/pypol/coordinates.py?ds=sidebyside diff --git a/pypol/coordinates.py b/pypol/coordinates.py index d392e37..ceab418 100644 --- a/pypol/coordinates.py +++ b/pypol/coordinates.py @@ -4,6 +4,7 @@ import operator from collections import OrderedDict, Mapping +from .geometry import GeometricObject from .linexprs import Symbol @@ -78,7 +79,7 @@ class Coordinates: yield symbol, func(coordinate1, coordinate2) -class Point(Coordinates): +class Point(Coordinates, GeometricObject): """ This class represents points in space. """