Class SoGetBoundingBoxAction
SoFaceSet
is the average of its vertices' coordinates.) For a group, the center point is defined as the average of the centers of all shapes in it.
Each bounding box is calculated as an SbXfBox3f
, where the transformation matrix is defined so that the bounding box can be stored in the object space of the SoShape
. When two bounding boxes are combined by a group node, the combination is performed so as to produce the smaller object-space box. Note that this does not necessarily yield the smallest world-space-aligned box, especially in the case of few SoShape
nodes. The application can accomodate this by using SoBBox
nodes.
The result of the calculation by the action can be returned as an SbXfBox3f
or as a world-space-aligned SbBox3f
.
To calculate the bounding box of a subgraph bounded by two paths, specify the left edge of the subgraph with setResetPath()
, and apply the action to the path that defines the right edge of the subgraph. The accumulated bounding box and transformation will be reset when the tail of the reset path is traversed.
If the subgraph being traversed does not contain any shapes, the returned bounding box will be empty (that is, SbBox3f.isEmpty()
will return true).
The SoBBox
node can be used to specify the bounding box for a shape or portion of the scene graph. This is useful, for example, to avoid the cost of computing the bounding box of a large (or frequently changing) geometry. The SoBBox
node can also be used to specify that a shape or portion of the scene graph should not be included in the bounding box calculation. This is useful, for example, to avoid considering screen aligned "annotation" graphics like legends.
Bounding boxes are used internally by Open Inventor to optimize rendering, picking, culling and other operations. For example, the standard viewer classes apply an SoGetBoundingBoxAction
to the scene graph when automatic adjustment of the near and far clipping planes is enabled (which is the default).
Bounding boxes are cached by some grouping nodes, primarily SoSeparator
. When this action is applied to a scene graph, it will use the cached bounding box whenever possible. So querying the bounding box of a (relatively) static scene graph is normally very fast. Open Inventor automatically detects when bounding caches become invalid and they are re-computed the next time an SoGetBoundingBoxAction
is applied.
NOTES:
- The bounding box will only include shapes that are actually traversed.
For example the bounding box will not include shapes under anSoSwitch
with whichChild set to SO_SWITCH_NONE. - The action does not consider the visibility of shapes that are traversed.
In other words the bounding box will include shapes that are invisible because of anSoDrawStyle
, shapes that are clipped out because of anSoClipPlane
, etc. UseSoBBox
if necessary to exclude shapes from the bounding box computation. - Using the correct viewport region is
critical when computing the bounding box of
SoText2
(and a few other screen space related) nodes.
However the bounding box of most shape nodes does not depend on the size of the viewport region and an approximate value may be passed to the constructor.
Sets: SoViewportRegionElement
// Get bounding box using current viewport on screen SoGetBoundingBoxAction action = new SoGetBoundingBoxAction( viewer.getArea().getViewportRegion() ); action.apply( root ); SbBox3f bbox = action.getBoundingBox();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Set a path to do a resetTransform/resetBoundingBox on.Nested classes/interfaces inherited from class com.openinventor.inventor.actions.SoAction
SoAction.AppliedCodes, SoAction.DistribModes, SoAction.PathCodes, SoAction.PathIndices
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
Field Summary
Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
void
static void
enableElement
(Class<? extends Inventor> t, int stkIndex) void
void
void
void
Returns computed bounding box in world space.Returns computed center point in world space.Returns the current reset path, or NULL.Returns current viewport region to use for action.Returns what flags were specified to be reset for the reset path.Returns computed bounding box before transformation into world space.boolean
boolean
Returns camera space flag.boolean
Returns true if the resetBefore flag was specified for the reset path.boolean
Returns true if the current reset path is not NULL.void
void
void
void
setInCameraSpace
(boolean flag) Set this flag to true if you want the returned bounding box to be in the space of whatever camera is in the graph.void
setResetPath
(SoPath path) Calls setResetPath(path, true, SoGetBoundingBoxAction.ResetTypes.valueOf( SoGetBoundingBoxAction.ResetTypes.ALL.getValue() )).void
setResetPath
(SoPath path, boolean resetBefore) Calls setResetPath(path, resetBefore, SoGetBoundingBoxAction.ResetTypes.valueOf( SoGetBoundingBoxAction.ResetTypes.ALL.getValue() )).void
setResetPath
(SoPath path, boolean resetBefore, SoGetBoundingBoxAction.ResetTypes what) If a non-NULL path is specified, the action will reset the computed bounding box to be empty and/or the current transformation to identity.void
setViewportRegion
(SbViewportRegion newRegion) Sets current viewport region to use for action.Methods inherited from class com.openinventor.inventor.actions.SoAction
apply, apply, clearApplyResult, forwardTraversal, forwardTraversal, getContinueActionInBranchFlag, getCurPath, getDistribMode, getNodeAppliedTo, getOriginalPathListAppliedTo, getPathAppliedTo, getPathCode, getPathListAppliedTo, getPipeId, getSceneManager, getState, getWhatAppliedTo, hasTerminated, invalidateState, isBeingApplied, isLastPathListAppliedTo, isUsingAlternateRep, nullAction, postDelayedTraversal, preDelayedTraversal, resetContinueActionInBranchFlag, setPipeId, setSceneManager, setUpState, stopActionInBranch, traverse, useAlternateRep
Methods inherited from class com.openinventor.inventor.Inventor
dispose, getNativeResourceHandle
-
Constructor Details
-
SoGetBoundingBoxAction
Constructor.
Even though the bounding box computation may not involve a window per se, some nodes need the size of the viewport to determine their size in 3D coordinates. For example the size of anSoText2
is a fixed value in device coordinates, but the corresponding size in 3D depends on the current camera.Usually it is convenient to get the actual viewport region from the viewer as shown in the example above. However if the scene graph does not contain any viewport dependent nodes then any values can be used.
-
-
Method Details
-
setResetPath
Calls setResetPath(path, true, SoGetBoundingBoxAction.ResetTypes.valueOf( SoGetBoundingBoxAction.ResetTypes.ALL.getValue() )). -
setResetPath
Calls setResetPath(path, resetBefore, SoGetBoundingBoxAction.ResetTypes.valueOf( SoGetBoundingBoxAction.ResetTypes.ALL.getValue() )). -
getCenter
Returns computed center point in world space. -
setInCameraSpace
public void setInCameraSpace(boolean flag) Set this flag to true if you want the returned bounding box to be in the space of whatever camera is in the graph. Camera space is defined to have the viewpoint at the origin, with the direction of view along the negative z axis. This space can be used to determine distances of objects from the camera. -
isInCameraSpace
public boolean isInCameraSpace()Returns camera space flag. -
resetCenter
public void resetCenter() -
setResetPath
If a non-NULL path is specified, the action will reset the computed bounding box to be empty and/or the current transformation to identity. The resetBefore flag indicates whether to perform the reset before or after the tail node of the path is traversed. -
getXfBoundingBox
Returns computed bounding box before transformation into world space. -
setViewportRegion
Sets current viewport region to use for action. -
getViewportRegion
Returns current viewport region to use for action. -
getBoundingBox
Returns computed bounding box in world space. -
enableElement
-
getResetPath
Returns the current reset path, or NULL. -
extendBy
-
extendBy
-
extendBy
-
checkResetAfter
public void checkResetAfter() -
checkResetBefore
public void checkResetBefore() -
extendBy
-
setCenter
-
isResetPath
public boolean isResetPath()Returns true if the current reset path is not NULL. -
isCenterSet
public boolean isCenterSet() -
getWhatReset
Returns what flags were specified to be reset for the reset path. -
setCenter
-
isResetBefore
public boolean isResetBefore()Returns true if the resetBefore flag was specified for the reset path.
-