SbProjectionGetProjectedBoundingBox Method |
Return projected bounding box if available.
Namespace: OIV.Inventor.ProjectionAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2023.1.3.0 (2023.1.3)
Syntaxpublic 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:
Boolean
RemarksNote: 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