libpysal.cg.Line¶
-
class
libpysal.cg.
Line
(m, b)[source]¶ Geometric representation of line objects.
-
__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>
- Parameters
- m
the
slope
of
the
line
- b
the
y-interceptof
the
line
- m
Examples
>>> ls = Line(1, 0) >>> ls.m 1.0 >>> ls.b 0.0
Methods
__init__
(self, m, b)Returns a Line object.
x
(self, y)Returns the x-value of the line at a particular y-value.
y
(self, x)Returns the y-value of the line at a particular x-value.
-