예제 #1
0
 public static Line LineToTop(this Vec2Double a, Vec2Double b)
 {
     return(a.LineTo(new Vec2Double(b.X, Height)));
 }
예제 #2
0
 public static Line LineToLeft(this Vec2Double a, Vec2Double b)
 {
     return(a.LineTo(new Vec2Double(-Width, b.Y)));
 }
예제 #3
0
 public static Line LineToBottom(this Vec2Double a, Vec2Double b)
 {
     return(a.LineTo(new Vec2Double(b.X, -Height)));
 }