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