| DebugRendererDrawAabbs Method |
Draws the axis-aligned bounding-boxes (AABBs) of a collection of geometries.
Namespace: DigitalRune.Graphics.RenderingAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public void DrawAabbs(
IEnumerable<IGeometricObject> geometricObjects,
Nullable<Color> color,
bool drawOverScene
)
Public Sub DrawAabbs (
geometricObjects As IEnumerable(Of IGeometricObject),
color As Nullable(Of Color),
drawOverScene As Boolean
)
public:
void DrawAabbs(
IEnumerable<IGeometricObject^>^ geometricObjects,
Nullable<Color> color,
bool drawOverScene
)
member DrawAabbs :
geometricObjects : IEnumerable<IGeometricObject> *
color : Nullable<Color> *
drawOverScene : bool -> unit
Parameters
- geometricObjects
- Type: System.Collections.GenericIEnumerableIGeometricObject
The geometric objects. - color
- Type: SystemNullableColor
The color. If this parameter is , each AABB is drawn with a unique
color.
- drawOverScene
- Type: SystemBoolean
If set to the object is drawn over the graphics scene (depth-test
disabled).
See Also