public void DrawPoint(JVector pos) { points.Add(pos.TK()); }
public void DrawTriangle(JVector pos1, JVector pos2, JVector pos3) { triangles.AddRange(new[] { pos1.TK(), pos2.TK(), pos3.TK() }); }
public void DrawLine(JVector start, JVector end) { lines.Add(start.TK()); lines.Add(end.TK()); }