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