コード例 #1
0
 public static void DrawLineGraph(Vector2[] points, float lineWidth, Camera camera)
 {
     DrawGeometry(ImLineSegment.Create(points, lineWidth), camera);
 }
コード例 #2
0
 public static void DrawLineSegment(float x1, float y1, float x2, float y2, float lineWidth, Camera camera)
 {
     DrawGeometry(ImLineSegment.Create(x1, y1, x2, y2, lineWidth), camera);
 }