libpysal.cg.
Ray
(origin, second_p)[source]¶Geometric representation of ray objects.
Origin (point where ray originates)
Second point on the ray (not point where ray originates)
__init__
(self, origin, second_p)[source]¶Returns a ray with the values specified.
__init__(Point, Point) -> Ray
Examples
>>> l = Ray(Point((0, 0)), Point((1, 0)))
>>> str(l.o)
'(0.0, 0.0)'
>>> str(l.p)
'(1.0, 0.0)'
Methods
|
Returns a ray with the values specified. |