/ . / _chimera / Plane
Plane() -> Plane
Plane(points: sequence of Point) -> Plane
Plane(_x: Plane) -> Plane
Plane(origin: Point, normal: Vector) -> Plane attributes:
- normal: Vector
- origin: Point
Methods
|
|
|
nearest
|
nearest ( self, pt )
nearest(pt: Point) -> Point
|
|
distance
|
distance ( self, pt )
distance(pt: Point) -> float
|
|
equation
|
equation ( self )
equation() -> list [4] of float
|
|
moveOrigin
|
moveOrigin ( self, distance )
moveOrigin(distance: float)
|
|
xformNormal
|
xformNormal ( self, xf )
xformNormal(xf: Xform)
|
|
offset
|
offset ( self )
offset() -> float
|
|
applyXform
|
applyXform ( self, xf )
applyXform(xf: Xform)
|
|
|