XRayParam Type
Describes the possible intersection parameters of two rays (rays are 2D lines extended infinitely in both directions). Returns parameters on both lines if they intersect.
Union cases
| Union case |
Description
|
Full Usage:
Intersect(twoParams, float)
Parameters:
float
Item2 : float
|
The rays (2d-lines extended infinitely) are intersecting. Contains the parameters on the first and second ray. These parameters can range from -infinity to +infinity.
|
Full Usage:
Parallel
|
The lines are parallel or even coincident, within the given tolerance. |
Full Usage:
TooShortA
|
Line A is shorter than the given minimum length tolerance. |
Full Usage:
TooShortB
|
Line B is shorter than the given minimum length tolerance. |
Full Usage:
TooShortBoth
|
Both Lines are shorter than the given minimum length tolerance. |
Instance members
| Instance member |
Description
|
Full Usage:
this.IsIntersect
Returns: bool
|
|
Full Usage:
this.IsParallel
Returns: bool
|
|
Full Usage:
this.IsTooShortA
Returns: bool
|
|
Full Usage:
this.IsTooShortB
Returns: bool
|
|
Full Usage:
this.IsTooShortBoth
Returns: bool
|
|
Euclid