21 return M.Sqrt(x * x + y * y);
54 public DVector2(
double x = 0.0,
double y = 0.0)
66 return new Vector2((
float)x, (
float)y);
77 return (M.Abs(x - v.x) <= e) && (M.Abs(y - v.y) <= e);
95 public void Set(
double newX = 0.0,
double newY = 0.0)
107 return "(" + x +
", " + y +
")";
118 return a.x * b.x + a.y * b.y;
129 return M.Sqrt(a.x * b.x + a.y * b.y);
141 double s = M.Max(0, M.Min(t, 1));
142 return a * (1 - s) + b * s;
static double Dot(DVector2 a, DVector2 b)
Dot the specified a and b.
override string ToString()
Returns a T:System.String that represents the current T:DVector2.
void Normalize()
Normalize this instance.
static DVector2 operator/(DVector2 a, double b)
Computes the division of a and b, yielding a new T:DVector2.
static double Distance(DVector2 a, DVector2 b)
Distance the specified a and b.
double magnitude
Gets the magnitude of the vector.
static DVector2 Lerp(DVector2 a, DVector2 b, double t)
Lerp the specified a, b and t.
Vector2 toVector2()
Converts to a Vector2.
static DVector2 operator+(DVector2 a, DVector2 b)
Adds a DVector2 to a DVector2, yielding a new T:DVector2.
bool Equals(DVector2 v, double e=0.00005)
Equals the specified v and e.
static DVector2 operator-(DVector2 a, DVector2 b)
Subtracts a DVector2 from a DVector2, yielding a new T:DVector2.
static DVector2 operator*(DVector2 a, double b)
Computes the product of a and b, yielding a new T:DVector2.
DVector2 normalized
Gets the normalized version of this vector.
DVector2(double x=0.0, double y=0.0)
Initializes a new instance of the T:DVector2 struct.
void Set(double newX=0.0, double newY=0.0)
Set the specified x and y.