示例#1
0
 public static Triangle GetTriangle(Vector2 pos1, Vector2 pos2, Vector2 pos3)
 {
     return(GetTriangle(
                PointMgr.GetPoint(pos1),
                PointMgr.GetPoint(pos2),
                PointMgr.GetPoint(pos3)));
 }
示例#2
0
 public static Circle GetCircle(Vector2 pos, float r)
 {
     return(GetCircle(PointMgr.GetPoint(pos), r));
 }
示例#3
0
 public static Line GetEdge(Vector2 pos1, Vector2 pos2)
 {
     return(GetEdge(PointMgr.GetPoint(pos1), PointMgr.GetPoint(pos2)));
 }