libpysal.cg.
Line
(m, b)[source]¶Geometric representation of line objects.
slope
y-intercept
__init__
(self, m, b)[source]¶Returns a Line object.
__init__(number, number) -> Line
Test tag: <tc>#is#Line.__init__</tc> Test tag: <tc>#tests#Line.__init__</tc>
Examples
>>> ls = Line(1, 0)
>>> ls.m
1.0
>>> ls.b
0.0
Methods
|
Returns a Line object. |
|
Returns the x-value of the line at a particular y-value. |
|
Returns the y-value of the line at a particular x-value. |