  | DebugRendererDrawPoint Method  | 
            Draws a point.
            
 
Namespace: DigitalRune.Graphics.RenderingAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntaxpublic void DrawPoint(
	Vector3F position,
	Color color,
	bool drawOverScene
)
Public Sub DrawPoint ( 
	position As Vector3F,
	color As Color,
	drawOverScene As Boolean
)
public:
void DrawPoint(
	Vector3F position, 
	Color color, 
	bool drawOverScene
)
member DrawPoint : 
        position : Vector3F * 
        color : Color * 
        drawOverScene : bool -> unit 
Parameters
- position
 - Type: DigitalRune.Mathematics.AlgebraVector3F
The position in world space. - color
 - Type: Color
The color. - drawOverScene
 - Type: SystemBoolean
            If set to  the object is drawn over the graphics scene (depth-test 
            disabled).
             
See Also