Example #1
0
 public Point2D( Vector2D _Source )
 {
     Set( _Source );
 }
Example #2
0
 public float3( Vector2D _Source )
 {
     Set( _Source );
 }
Example #3
0
 public void Set( Vector2D _Source )
 {
     x = _Source.x; y = _Source.y;
 }
Example #4
0
 public void Min( Vector2D _Op )
 {
     x = System.Math.Min( x, _Op.x ); y = System.Math.Min( y, _Op.y );
 }
Example #5
0
 public Vector2D( Vector2D _Source )
 {
     Set( _Source );
 }
Example #6
0
 public void Set( Vector2D _Source )
 {
     x = _Source.x; y = _Source.y; z = w = 0.0f;
 }
Example #7
0
 public void                                     Set(Vector2D _Source)
 {
     x = _Source.x; y = _Source.y;
 }
Example #8
0
 public Point2D(Vector2D _Source)
 {
     Set(_Source);
 }