Interface IDebugDrawer
- Namespace
- Jitter2
- Assembly
- Jitter2.dll
Defines an interface for drawing debug visualization elements.
public interface IDebugDrawer
Methods
DrawPoint(in JVector)
Draws a point at the specified position.
void DrawPoint(in JVector p)
Parameters
pJVectorThe position of the point.
DrawSegment(in JVector, in JVector)
Draws a line segment between two points.
void DrawSegment(in JVector pA, in JVector pB)
Parameters
DrawTriangle(in JVector, in JVector, in JVector)
Draws a triangle defined by three vertices.
void DrawTriangle(in JVector pA, in JVector pB, in JVector pC)