| DebugRendererDrawAxes Method |
Draws 3 axes for a coordinate cross.
Namespace: DigitalRune.Graphics.RenderingAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public void DrawAxes(
Pose pose,
float size,
bool drawOverScene
)
Public Sub DrawAxes (
pose As Pose,
size As Single,
drawOverScene As Boolean
)
public:
void DrawAxes(
Pose pose,
float size,
bool drawOverScene
)
member DrawAxes :
pose : Pose *
size : float32 *
drawOverScene : bool -> unit
Parameters
- pose
- Type: DigitalRune.GeometryPose
The pose (position and orientation). - size
- Type: SystemSingle
The size in world space. - drawOverScene
- Type: SystemBoolean
If set to the object is drawn over the graphics scene (depth-test
disabled).
Remarks
The x-axis is drawn red, the y-axis is drawn green, and the z-axis is drawn blue.
See Also