示例#1
0
 private float cross(Point3D a, Point3D b)
 {
     return(a.x * b.y - a.y * b.x);
 }
示例#2
0
 public void setPlayer(Point3D p)
 {
     Play = new Circle(p, Player_radius);
 }
示例#3
0
 public GamePos(Point3D p)
 {
     x = (int)p.x;
     y = (int)p.y;
 }