Example #1
0
 public Vector2D(Point2D _Source)
 {
     Set(_Source);
 }
Example #2
0
 public void                                     Set(Point2D _Source)
 {
     x = _Source.x; y = _Source.y; z = w = 0.0f;
 }
Example #3
0
 public void                                     Set(Point2D _Source)
 {
     x = _Source.x; y = _Source.y;
 }
Example #4
0
 public Point4D(Point2D _Source)
 {
     Set(_Source);
 }