예제 #1
0
 public void SetLocation(Point p)
 {
     this.x = p.GetX();
     this.y = p.GetY();
 }
예제 #2
0
파일: Point.cs 프로젝트: vb0067/LGame
 public void SetLocation(Point p)
 {
     this.x = p.GetX();
     this.y = p.GetY();
 }
예제 #3
0
 public float PtSegDistSq(Point pt)
 {
     return PtSegDistSq(GetX1(), GetY1(), GetX2(), GetY2(), pt.GetX(),
             pt.GetY());
 }
예제 #4
0
 public float PtLineDistSq(Point pt)
 {
     return(PtLineDistSq(GetX1(), GetY1(), GetX2(), GetY2(), pt.GetX(),
                         pt.GetY()));
 }
예제 #5
0
 public float PtLineDist(Point pt)
 {
     return PtLineDist(GetX1(), GetY1(), GetX2(), GetY2(), pt.GetX(),
             pt.GetY());
 }