libpysal.cg.
Ray
(origin, second_p)[source]¶Geometric representation of ray objects.
Attributes: |
|
---|
__init__
(origin, second_p)[source]¶Returns a ray with the values specified.
__init__(Point, Point) -> Ray
Parameters: |
|
---|
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__ (origin, second_p) |
Returns a ray with the values specified. |