Finds the span of a box along a specified direction.
Namespace: OIV.InventorAssembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 2024.2.2.Release.778f4cc64de03c89c1282c66aa1f73c0e9a1408b
Syntax public void GetSpan(
SbVec3d direction,
out double dMin,
out double dMax
)
Public Sub GetSpan (
direction As SbVec3d,
<OutAttribute> ByRef dMin As Double,
<OutAttribute> ByRef dMax As Double
)
public:
void GetSpan(
SbVec3d direction,
[OutAttribute] double% dMin,
[OutAttribute] double% dMax
)
member GetSpan :
direction : SbVec3d *
dMin : float byref *
dMax : float byref -> unit
Parameters
- direction
- Type: OIV.InventorSbVec3d
Span direction. - dMin
- Type: SystemDouble
Minimum distance. - dMax
- Type: SystemDouble
Maximum distance.
Remarks
The span is the total
distance the box occupies along a given direction. The total distance is
returned in the form of a minimum and maximum distance from the origin of each
of the corners of the box along the given direction. The difference between
these two values is the span.
See Also