Example #1
0
        public static float DistanceSqared(Point_vf A, Point_vf B)
        {
            float hori = (A._x - B._x);
            float vert = (A._y - B._y);

            return((hori * hori) + (vert * vert));
        }
Example #2
0
 public Point_vf(Point_vf p) : this(p._x, p._y)
 {
 }