Public Member Functions | |
Vector3d | __call__ (self, float param) |
None | __init__ (self) |
None | __init__ (self, Vector3d p, Vector3d d) |
None | __init__ (self, Line3d arg0) |
Line3d | __neg__ (self) |
Line3d | __pos__ (self) |
float | distanceSq (self, Vector3d x) |
Line3d | normalized (self) |
Vector3d | project (self, Vector3d x) |
Generated from: MR::Line3d Aliases: Line_Vector3_double, Line3_double, Line_Vector3d, Line3_double 2- or 3-dimensional line: cross( x - p, d ) = 0 \\ingroup MathGroup
None meshlib.mrmeshpy.Line3d.__init__ | ( | self | ) |
None meshlib.mrmeshpy.Line3d.__init__ | ( | self, | |
Line3d | arg0 ) |
Implicit copy constructor.
Vector3d meshlib.mrmeshpy.Line3d.__call__ | ( | self, | |
float | param ) |
returns point on the line, where param=0 returns p and param=1 returns p+d
Line3d meshlib.mrmeshpy.Line3d.__neg__ | ( | self | ) |
returns same line represented with flipped direction of d-vector
Line3d meshlib.mrmeshpy.Line3d.__pos__ | ( | self | ) |
returns same representation
float meshlib.mrmeshpy.Line3d.distanceSq | ( | self, | |
Vector3d | x ) |
returns squared distance from given point to this line
Line3d meshlib.mrmeshpy.Line3d.normalized | ( | self | ) |
returns same line represented with unit d-vector