| ShapeGetAabb Method (Pose) |
Computes the axis-aligned bounding box (AABB) for this shape positioned in world space using
the given
Pose.
Namespace: DigitalRune.Geometry.ShapesAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public Aabb GetAabb(
Pose pose
)
Public Function GetAabb (
pose As Pose
) As Aabb
public:
Aabb GetAabb(
Pose pose
)
member GetAabb :
pose : Pose -> Aabb
Parameters
- pose
- Type: DigitalRune.GeometryPose
The Pose of the shape. This pose defines how the shape should be positioned
in world space.
Return Value
Type:
AabbThe AABB of the shape positioned in world space.
Remarks
The AABB is axis-aligned to the axes of the world space (or the parent coordinate space).
See Also