SbProjectionGetProjectedBoundingBox Method |
Return projected bounding box if available.
Namespace: OIV.Inventor.ProjectionAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public bool GetProjectedBoundingBox(
out SbBox3f bbox
)
Public Function GetProjectedBoundingBox (
<OutAttribute> ByRef bbox As SbBox3f
) As Boolean
public:
bool GetProjectedBoundingBox(
[OutAttribute] SbBox3f% bbox
)
member GetProjectedBoundingBox :
bbox : SbBox3f byref -> bool
Parameters
- bbox
- Type: OIV.InventorSbBox3f
Return Value
Type:
BooleanRemarks Note: Projecting a bounding box is most of the time not equivalent to the result of a bounding box that contains all projected point.
It depends on the projection, and it is why by default it returns false, and should be redefined by the specific inherited projection class if it make sense.
See Also