jan-mue/geometer

Line.contains() fails

Closed this issue · 2 comments

mcow commented

version = 0.3.4
Python (windows) 3.11.1

This simple case throws TensorComputationError:

>>> PAIR = [Point(-5, 2), Point(5, 2)]
>>> ll = Line(PAIR)
>>> ll
Line([Point(-5, 2), Point(5, 2)])
>>> ll.contains(Point(0, 6))

The Line class takes either two points as parameters or an array/list containing the components of the vector in n+1 dimensions that defines the line in n-dimensional projective space.
So, you could change your code to this:

PAIR = [Point(-5, 2), Point(5, 2)]
>>> ll = Line(*PAIR)
>>> ll
Line(Point(-5, 2), Point(5, 2))
>>> ll.contains(Point(0, 6))
stale commented

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.