| DebugRendererDrawArrow Method |
Draws an arrow pointing from start to end.
Namespace: DigitalRune.Graphics.RenderingAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public void DrawArrow(
Vector3F start,
Vector3F end,
Color color,
bool drawOverScene
)
Public Sub DrawArrow (
start As Vector3F,
end As Vector3F,
color As Color,
drawOverScene As Boolean
)
public:
void DrawArrow(
Vector3F start,
Vector3F end,
Color color,
bool drawOverScene
)
member DrawArrow :
start : Vector3F *
end : Vector3F *
color : Color *
drawOverScene : bool -> unit
Parameters
- start
- Type: DigitalRune.Mathematics.AlgebraVector3F
The start. - end
- Type: DigitalRune.Mathematics.AlgebraVector3F
The end. - color
- Type: Color
The color. - drawOverScene
- Type: SystemBoolean
If set to the object is drawn over the graphics scene (depth-test
disabled).
See Also