// Copyright (c) Xenko contributors (https://xenko.com) and Silicon Studio Corp. (https://www.siliconstudio.co.jp) // Distributed under the MIT license. See the LICENSE.md file in the project root for more information. // // ----------------------------------------------------------------------------- // Original code from SlimMath project. http://code.google.com/p/slimmath/ // Greetings to SlimDX Group. Original code published with the following license: // ----------------------------------------------------------------------------- /* * Copyright (c) 2007-2011 SlimDX Group * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ using System; using System.Globalization; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Runtime.Serialization; namespace math { /// /// Represents a two dimensional mathematical vector. /// [DataContract( Name = "float2")] [DataStyle(DataStyle.Compact)] [StructLayout(LayoutKind.Sequential, Pack = 4)] public struct Vec2 : IEquatable, IFormattable { /// /// The size of the type, in bytes. /// public static readonly int SizeInBytes = lib.Util.SizeOf(); /// /// A with all of its components set to zero. /// public static readonly Vec2 Zero = new Vec2(); /// /// The X unit (1, 0). /// public static readonly Vec2 UnitX = new Vec2(1.0f, 0.0f); /// /// The Y unit (0, 1). /// public static readonly Vec2 UnitY = new Vec2(0.0f, 1.0f); /// /// A with all of its components set to one. /// public static readonly Vec2 One = new Vec2(1.0f, 1.0f); /// /// The X component of the vector. /// [DataMember( Order = 0 )] public float X; /// /// The Y component of the vector. /// [DataMember( Order = 1 )] public float Y; /// /// Initializes a new instance of the struct. /// /// The value that will be assigned to all components. public Vec2(float value) { X = value; Y = value; } /// /// Initializes a new instance of the struct. /// /// Initial value for the X component of the vector. /// Initial value for the Y component of the vector. public Vec2(float x, float y) { X = x; Y = y; } /// /// Initializes a new instance of the struct. /// /// The values to assign to the X and Y components of the vector. This must be an array with two elements. /// Thrown when is null. /// Thrown when contains more or less than two elements. public Vec2(float[] values) { if (values == null) throw new ArgumentNullException("values"); if (values.Length != 2) throw new ArgumentOutOfRangeException("values", "There must be two and only two input values for Vector2."); X = values[0]; Y = values[1]; } /// /// Gets a value indicting whether this instance is normalized. /// public bool IsNormalized { get { return Math.Abs((X * X) + (Y * Y) - 1f) < MathUtil.ZeroTolerance; } } /// /// Gets or sets the component at the specified index. /// /// The value of the X or Y component, depending on the index. /// The index of the component to access. Use 0 for the X component and 1 for the Y component. /// The value of the component at the specified index. /// Thrown when the is out of the range [0, 1]. public float this[int index] { get { switch (index) { case 0: return X; case 1: return Y; } throw new ArgumentOutOfRangeException("index", "Indices for Vector2 run from 0 to 1, inclusive."); } set { switch (index) { case 0: X = value; break; case 1: Y = value; break; default: throw new ArgumentOutOfRangeException("index", "Indices for Vector2 run from 0 to 1, inclusive."); } } } /// /// Calculates the length of the vector. /// /// The length of the vector. /// /// may be preferred when only the relative length is needed /// and speed is of the essence. /// [MethodImpl(MethodImplOptions.AggressiveInlining)] public float Length() { return (float)Math.Sqrt((X * X) + (Y * Y)); } /// /// Calculates the squared length of the vector. /// /// The squared length of the vector. /// /// This method may be preferred to when only a relative length is needed /// and speed is of the essence. /// [MethodImpl(MethodImplOptions.AggressiveInlining)] public float LengthSquared() { return (X * X) + (Y * Y); } /// /// Converts the vector into a unit vector. /// [MethodImpl(MethodImplOptions.AggressiveInlining)] public void Normalize() { float length = Length(); if (length > MathUtil.ZeroTolerance) { float inv = 1.0f / length; X *= inv; Y *= inv; } } /// /// Creates an array containing the elements of the vector. /// /// A two-element array containing the components of the vector. public float[] ToArray() { return new float[] { X, Y }; } /// /// Adds two vectors. /// /// The first vector to add. /// The second vector to add. /// When the method completes, contains the sum of the two vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void Add(ref Vec2 left, ref Vec2 right, out Vec2 result) { result = new Vec2(left.X + right.X, left.Y + right.Y); } /// /// Adds two vectors. /// /// The first vector to add. /// The second vector to add. /// The sum of the two vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 Add(Vec2 left, Vec2 right) { return new Vec2(left.X + right.X, left.Y + right.Y); } /// /// Subtracts two vectors. /// /// The first vector to subtract. /// The second vector to subtract. /// When the method completes, contains the difference of the two vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void Subtract(ref Vec2 left, ref Vec2 right, out Vec2 result) { result = new Vec2(left.X - right.X, left.Y - right.Y); } /// /// Subtracts two vectors. /// /// The first vector to subtract. /// The second vector to subtract. /// The difference of the two vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 Subtract(Vec2 left, Vec2 right) { return new Vec2(left.X - right.X, left.Y - right.Y); } /// /// Scales a vector by the given value. /// /// The vector to scale. /// The amount by which to scale the vector. /// When the method completes, contains the scaled vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void Multiply(ref Vec2 value, float scale, out Vec2 result) { result = new Vec2(value.X * scale, value.Y * scale); } /// /// Scales a vector by the given value. /// /// The vector to scale. /// The amount by which to scale the vector. /// The scaled vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 Multiply(Vec2 value, float scale) { return new Vec2(value.X * scale, value.Y * scale); } /// /// Modulates a vector with another by performing component-wise multiplication. /// /// The first vector to modulate. /// The second vector to modulate. /// When the method completes, contains the modulated vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void Modulate(ref Vec2 left, ref Vec2 right, out Vec2 result) { result = new Vec2(left.X * right.X, left.Y * right.Y); } /// /// Modulates a vector with another by performing component-wise multiplication. /// /// The first vector to modulate. /// The second vector to modulate. /// The modulated vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 Modulate(Vec2 left, Vec2 right) { return new Vec2(left.X * right.X, left.Y * right.Y); } /// /// Scales a vector by the given value. /// /// The vector to scale. /// The amount by which to scale the vector. /// When the method completes, contains the scaled vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void Divide(ref Vec2 value, float scale, out Vec2 result) { result = new Vec2(value.X / scale, value.Y / scale); } /// /// Scales a vector by the given value. /// /// The vector to scale. /// The amount by which to scale the vector. /// The scaled vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 Divide(Vec2 value, float scale) { return new Vec2(value.X / scale, value.Y / scale); } /// /// Demodulates a vector with another by performing component-wise division. /// /// The first vector to demodulate. /// The second vector to demodulate. /// When the method completes, contains the demodulated vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void Demodulate(ref Vec2 left, ref Vec2 right, out Vec2 result) { result = new Vec2(left.X / right.X, left.Y / right.Y); } /// /// Demodulates a vector with another by performing component-wise division. /// /// The first vector to demodulate. /// The second vector to demodulate. /// The demodulated vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 Demodulate(Vec2 left, Vec2 right) { return new Vec2(left.X / right.X, left.Y / right.Y); } /// /// Reverses the direction of a given vector. /// /// The vector to negate. /// When the method completes, contains a vector facing in the opposite direction. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void Negate(ref Vec2 value, out Vec2 result) { result = new Vec2(-value.X, -value.Y); } /// /// Reverses the direction of a given vector. /// /// The vector to negate. /// A vector facing in the opposite direction. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 Negate(Vec2 value) { return new Vec2(-value.X, -value.Y); } /// /// Returns a containing the 2D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle. /// /// A containing the 2D Cartesian coordinates of vertex 1 of the triangle. /// A containing the 2D Cartesian coordinates of vertex 2 of the triangle. /// A containing the 2D Cartesian coordinates of vertex 3 of the triangle. /// Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). /// Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). /// When the method completes, contains the 2D Cartesian coordinates of the specified point. public static void Barycentric(ref Vec2 value1, ref Vec2 value2, ref Vec2 value3, float amount1, float amount2, out Vec2 result) { result = new Vec2( (value1.X + (amount1 * (value2.X - value1.X))) + (amount2 * (value3.X - value1.X)), (value1.Y + (amount1 * (value2.Y - value1.Y))) + (amount2 * (value3.Y - value1.Y))); } /// /// Returns a containing the 2D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle. /// /// A containing the 2D Cartesian coordinates of vertex 1 of the triangle. /// A containing the 2D Cartesian coordinates of vertex 2 of the triangle. /// A containing the 2D Cartesian coordinates of vertex 3 of the triangle. /// Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). /// Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). /// A new containing the 2D Cartesian coordinates of the specified point. public static Vec2 Barycentric(Vec2 value1, Vec2 value2, Vec2 value3, float amount1, float amount2) { Vec2 result; Barycentric(ref value1, ref value2, ref value3, amount1, amount2, out result); return result; } /// /// Restricts a value to be within a specified range. /// /// The value to clamp. /// The minimum value. /// The maximum value. /// When the method completes, contains the clamped value. public static void Clamp(ref Vec2 value, ref Vec2 min, ref Vec2 max, out Vec2 result) { float x = value.X; x = (x > max.X) ? max.X : x; x = (x < min.X) ? min.X : x; float y = value.Y; y = (y > max.Y) ? max.Y : y; y = (y < min.Y) ? min.Y : y; result = new Vec2(x, y); } /// /// Restricts a value to be within a specified range. /// /// The value to clamp. /// The minimum value. /// The maximum value. /// The clamped value. public static Vec2 Clamp(Vec2 value, Vec2 min, Vec2 max) { Vec2 result; Clamp(ref value, ref min, ref max, out result); return result; } /// /// Calculates the distance between two vectors. /// /// The first vector. /// The second vector. /// When the method completes, contains the distance between the two vectors. /// /// may be preferred when only the relative distance is needed /// and speed is of the essence. /// public static void Distance(ref Vec2 value1, ref Vec2 value2, out float result) { float x = value1.X - value2.X; float y = value1.Y - value2.Y; result = (float)Math.Sqrt((x * x) + (y * y)); } /// /// Calculates the distance between two vectors. /// /// The first vector. /// The second vector. /// The distance between the two vectors. /// /// may be preferred when only the relative distance is needed /// and speed is of the essence. /// public static float Distance(Vec2 value1, Vec2 value2) { float x = value1.X - value2.X; float y = value1.Y - value2.Y; return (float)Math.Sqrt((x * x) + (y * y)); } /// /// Calculates the squared distance between two vectors. /// /// The first vector. /// The second vector /// When the method completes, contains the squared distance between the two vectors. /// Distance squared is the value before taking the square root. /// Distance squared can often be used in place of distance if relative comparisons are being made. /// For example, consider three points A, B, and C. To determine whether B or C is further from A, /// compare the distance between A and B to the distance between A and C. Calculating the two distances /// involves two square roots, which are computationally expensive. However, using distance squared /// provides the same information and avoids calculating two square roots. /// public static void DistanceSquared(ref Vec2 value1, ref Vec2 value2, out float result) { float x = value1.X - value2.X; float y = value1.Y - value2.Y; result = (x * x) + (y * y); } /// /// Calculates the squared distance between two vectors. /// /// The first vector. /// The second vector. /// The squared distance between the two vectors. /// Distance squared is the value before taking the square root. /// Distance squared can often be used in place of distance if relative comparisons are being made. /// For example, consider three points A, B, and C. To determine whether B or C is further from A, /// compare the distance between A and B to the distance between A and C. Calculating the two distances /// involves two square roots, which are computationally expensive. However, using distance squared /// provides the same information and avoids calculating two square roots. /// public static float DistanceSquared(Vec2 value1, Vec2 value2) { float x = value1.X - value2.X; float y = value1.Y - value2.Y; return (x * x) + (y * y); } /// /// Calculates the dot product of two vectors. /// /// First source vector. /// Second source vector. /// When the method completes, contains the dot product of the two vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void Dot(ref Vec2 left, ref Vec2 right, out float result) { result = (left.X * right.X) + (left.Y * right.Y); } /// /// Calculates the dot product of two vectors. /// /// First source vector. /// Second source vector. /// The dot product of the two vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static float Dot(Vec2 left, Vec2 right) { return (left.X * right.X) + (left.Y * right.Y); } /// /// Converts the vector into a unit vector. /// /// The vector to normalize. /// When the method completes, contains the normalized vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void Normalize(ref Vec2 value, out Vec2 result) { result = value; result.Normalize(); } /// /// Converts the vector into a unit vector. /// /// The vector to normalize. /// The normalized vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 Normalize(Vec2 value) { value.Normalize(); return value; } /// /// Performs a linear interpolation between two vectors. /// /// Start vector. /// End vector. /// Value between 0 and 1 indicating the weight of . /// When the method completes, contains the linear interpolation of the two vectors. /// /// This method performs the linear interpolation based on the following formula. /// start + (end - start) * amount /// Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. /// public static void Lerp(ref Vec2 start, ref Vec2 end, float amount, out Vec2 result) { result.X = start.X + ((end.X - start.X) * amount); result.Y = start.Y + ((end.Y - start.Y) * amount); } /// /// Performs a linear interpolation between two vectors. /// /// Start vector. /// End vector. /// Value between 0 and 1 indicating the weight of . /// The linear interpolation of the two vectors. /// /// This method performs the linear interpolation based on the following formula. /// start + (end - start) * amount /// Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. /// public static Vec2 Lerp(Vec2 start, Vec2 end, float amount) { Vec2 result; Lerp(ref start, ref end, amount, out result); return result; } /// /// Performs a cubic interpolation between two vectors. /// /// Start vector. /// End vector. /// Value between 0 and 1 indicating the weight of . /// When the method completes, contains the cubic interpolation of the two vectors. public static void SmoothStep(ref Vec2 start, ref Vec2 end, float amount, out Vec2 result) { amount = (amount > 1.0f) ? 1.0f : ((amount < 0.0f) ? 0.0f : amount); amount = (amount * amount) * (3.0f - (2.0f * amount)); result.X = start.X + ((end.X - start.X) * amount); result.Y = start.Y + ((end.Y - start.Y) * amount); } /// /// Performs a cubic interpolation between two vectors. /// /// Start vector. /// End vector. /// Value between 0 and 1 indicating the weight of . /// The cubic interpolation of the two vectors. public static Vec2 SmoothStep(Vec2 start, Vec2 end, float amount) { Vec2 result; SmoothStep(ref start, ref end, amount, out result); return result; } /// /// Performs a Hermite spline interpolation. /// /// First source position vector. /// First source tangent vector. /// Second source position vector. /// Second source tangent vector. /// Weighting factor. /// When the method completes, contains the result of the Hermite spline interpolation. public static void Hermite(ref Vec2 value1, ref Vec2 tangent1, ref Vec2 value2, ref Vec2 tangent2, float amount, out Vec2 result) { float squared = amount * amount; float cubed = amount * squared; float part1 = ((2.0f * cubed) - (3.0f * squared)) + 1.0f; float part2 = (-2.0f * cubed) + (3.0f * squared); float part3 = (cubed - (2.0f * squared)) + amount; float part4 = cubed - squared; result.X = (((value1.X * part1) + (value2.X * part2)) + (tangent1.X * part3)) + (tangent2.X * part4); result.Y = (((value1.Y * part1) + (value2.Y * part2)) + (tangent1.Y * part3)) + (tangent2.Y * part4); } /// /// Performs a Hermite spline interpolation. /// /// First source position vector. /// First source tangent vector. /// Second source position vector. /// Second source tangent vector. /// Weighting factor. /// The result of the Hermite spline interpolation. public static Vec2 Hermite(Vec2 value1, Vec2 tangent1, Vec2 value2, Vec2 tangent2, float amount) { Vec2 result; Hermite(ref value1, ref tangent1, ref value2, ref tangent2, amount, out result); return result; } /// /// Performs a Catmull-Rom interpolation using the specified positions. /// /// The first position in the interpolation. /// The second position in the interpolation. /// The third position in the interpolation. /// The fourth position in the interpolation. /// Weighting factor. /// When the method completes, contains the result of the Catmull-Rom interpolation. public static void CatmullRom(ref Vec2 value1, ref Vec2 value2, ref Vec2 value3, ref Vec2 value4, float amount, out Vec2 result) { float squared = amount * amount; float cubed = amount * squared; result.X = 0.5f * ((((2.0f * value2.X) + ((-value1.X + value3.X) * amount)) + (((((2.0f * value1.X) - (5.0f * value2.X)) + (4.0f * value3.X)) - value4.X) * squared)) + ((((-value1.X + (3.0f * value2.X)) - (3.0f * value3.X)) + value4.X) * cubed)); result.Y = 0.5f * ((((2.0f * value2.Y) + ((-value1.Y + value3.Y) * amount)) + (((((2.0f * value1.Y) - (5.0f * value2.Y)) + (4.0f * value3.Y)) - value4.Y) * squared)) + ((((-value1.Y + (3.0f * value2.Y)) - (3.0f * value3.Y)) + value4.Y) * cubed)); } /// /// Performs a Catmull-Rom interpolation using the specified positions. /// /// The first position in the interpolation. /// The second position in the interpolation. /// The third position in the interpolation. /// The fourth position in the interpolation. /// Weighting factor. /// A vector that is the result of the Catmull-Rom interpolation. public static Vec2 CatmullRom(Vec2 value1, Vec2 value2, Vec2 value3, Vec2 value4, float amount) { Vec2 result; CatmullRom(ref value1, ref value2, ref value3, ref value4, amount, out result); return result; } /// /// Returns a vector containing the smallest components of the specified vectors. /// /// The first source vector. /// The second source vector. /// When the method completes, contains an new vector composed of the largest components of the source vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void Max(ref Vec2 left, ref Vec2 right, out Vec2 result) { result.X = (left.X > right.X) ? left.X : right.X; result.Y = (left.Y > right.Y) ? left.Y : right.Y; } /// /// Returns a vector containing the largest components of the specified vectors. /// /// The first source vector. /// The second source vector. /// A vector containing the largest components of the source vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 Max(Vec2 left, Vec2 right) { Vec2 result; Max(ref left, ref right, out result); return result; } /// /// Returns a vector containing the smallest components of the specified vectors. /// /// The first source vector. /// The second source vector. /// When the method completes, contains an new vector composed of the smallest components of the source vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void Min(ref Vec2 left, ref Vec2 right, out Vec2 result) { result.X = (left.X < right.X) ? left.X : right.X; result.Y = (left.Y < right.Y) ? left.Y : right.Y; } /// /// Returns a vector containing the smallest components of the specified vectors. /// /// The first source vector. /// The second source vector. /// A vector containing the smallest components of the source vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 Min(Vec2 left, Vec2 right) { Vec2 result; Min(ref left, ref right, out result); return result; } /// /// Returns the reflection of a vector off a surface that has the specified normal. /// /// The source vector. /// Normal of the surface. /// When the method completes, contains the reflected vector. /// Reflect only gives the direction of a reflection off a surface, it does not determine /// whether the original vector was close enough to the surface to hit it. public static void Reflect(ref Vec2 vector, ref Vec2 normal, out Vec2 result) { float dot = (vector.X * normal.X) + (vector.Y * normal.Y); result.X = vector.X - ((2.0f * dot) * normal.X); result.Y = vector.Y - ((2.0f * dot) * normal.Y); } /// /// Returns the reflection of a vector off a surface that has the specified normal. /// /// The source vector. /// Normal of the surface. /// The reflected vector. /// Reflect only gives the direction of a reflection off a surface, it does not determine /// whether the original vector was close enough to the surface to hit it. public static Vec2 Reflect(Vec2 vector, Vec2 normal) { Vec2 result; Reflect(ref vector, ref normal, out result); return result; } /// /// Orthogonalizes a list of vectors. /// /// The list of orthogonalized vectors. /// The list of vectors to orthogonalize. /// /// Orthogonalization is the process of making all vectors orthogonal to each other. This /// means that any given vector in the list will be orthogonal to any other given vector in the /// list. /// Because this method uses the modified Gram-Schmidt process, the resulting vectors /// tend to be numerically unstable. The numeric stability decreases according to the vectors /// position in the list so that the first vector is the most stable and the last vector is the /// least stable. /// /// Thrown when or is null. /// Thrown when is shorter in length than . public static void Orthogonalize(Vec2[] destination, params Vec2[] source) { //Uses the modified Gram-Schmidt process. //q1 = m1 //q2 = m2 - ((q1 ⋅ m2) / (q1 ⋅ q1)) * q1 //q3 = m3 - ((q1 ⋅ m3) / (q1 ⋅ q1)) * q1 - ((q2 ⋅ m3) / (q2 ⋅ q2)) * q2 //q4 = m4 - ((q1 ⋅ m4) / (q1 ⋅ q1)) * q1 - ((q2 ⋅ m4) / (q2 ⋅ q2)) * q2 - ((q3 ⋅ m4) / (q3 ⋅ q3)) * q3 //q5 = ... if (source == null) throw new ArgumentNullException("source"); if (destination == null) throw new ArgumentNullException("destination"); if (destination.Length < source.Length) throw new ArgumentOutOfRangeException("destination", "The destination array must be of same length or larger length than the source array."); for (int i = 0; i < source.Length; ++i) { Vec2 newvector = source[i]; for (int r = 0; r < i; ++r) { newvector -= (Vec2.Dot(destination[r], newvector) / Vec2.Dot(destination[r], destination[r])) * destination[r]; } destination[i] = newvector; } } /// /// Orthonormalizes a list of vectors. /// /// The list of orthonormalized vectors. /// The list of vectors to orthonormalize. /// /// Orthonormalization is the process of making all vectors orthogonal to each /// other and making all vectors of unit length. This means that any given vector will /// be orthogonal to any other given vector in the list. /// Because this method uses the modified Gram-Schmidt process, the resulting vectors /// tend to be numerically unstable. The numeric stability decreases according to the vectors /// position in the list so that the first vector is the most stable and the last vector is the /// least stable. /// /// Thrown when or is null. /// Thrown when is shorter in length than . public static void Orthonormalize(Vec2[] destination, params Vec2[] source) { //Uses the modified Gram-Schmidt process. //Because we are making unit vectors, we can optimize the math for orthogonalization //and simplify the projection operation to remove the division. //q1 = m1 / |m1| //q2 = (m2 - (q1 ⋅ m2) * q1) / |m2 - (q1 ⋅ m2) * q1| //q3 = (m3 - (q1 ⋅ m3) * q1 - (q2 ⋅ m3) * q2) / |m3 - (q1 ⋅ m3) * q1 - (q2 ⋅ m3) * q2| //q4 = (m4 - (q1 ⋅ m4) * q1 - (q2 ⋅ m4) * q2 - (q3 ⋅ m4) * q3) / |m4 - (q1 ⋅ m4) * q1 - (q2 ⋅ m4) * q2 - (q3 ⋅ m4) * q3| //q5 = ... if (source == null) throw new ArgumentNullException("source"); if (destination == null) throw new ArgumentNullException("destination"); if (destination.Length < source.Length) throw new ArgumentOutOfRangeException("destination", "The destination array must be of same length or larger length than the source array."); for (int i = 0; i < source.Length; ++i) { Vec2 newvector = source[i]; for (int r = 0; r < i; ++r) { newvector -= Vec2.Dot(destination[r], newvector) * destination[r]; } newvector.Normalize(); destination[i] = newvector; } } /// /// Transforms a 2D vector by the given rotation. /// /// The vector to rotate. /// The rotation to apply. /// When the method completes, contains the transformed . public static void Transform(ref Vec2 vector, ref Quaternion rotation, out Vec2 result) { float x = rotation.X + rotation.X; float y = rotation.Y + rotation.Y; float z = rotation.Z + rotation.Z; float wz = rotation.W * z; float xx = rotation.X * x; float xy = rotation.X * y; float yy = rotation.Y * y; float zz = rotation.Z * z; result = new Vec2((vector.X * (1.0f - yy - zz)) + (vector.Y * (xy - wz)), (vector.X * (xy + wz)) + (vector.Y * (1.0f - xx - zz))); } /// /// Transforms a 2D vector by the given rotation. /// /// The vector to rotate. /// The rotation to apply. /// The transformed . public static Vec2 Transform(Vec2 vector, Quaternion rotation) { Vec2 result; Transform(ref vector, ref rotation, out result); return result; } /// /// Transforms an array of vectors by the given rotation. /// /// The array of vectors to transform. /// The rotation to apply. /// The array for which the transformed vectors are stored. /// This array may be the same array as . /// Thrown when or is null. /// Thrown when is shorter in length than . public static void Transform(Vec2[] source, ref Quaternion rotation, Vec2[] destination) { if (source == null) throw new ArgumentNullException("source"); if (destination == null) throw new ArgumentNullException("destination"); if (destination.Length < source.Length) throw new ArgumentOutOfRangeException("destination", "The destination array must be of same length or larger length than the source array."); float x = rotation.X + rotation.X; float y = rotation.Y + rotation.Y; float z = rotation.Z + rotation.Z; float wz = rotation.W * z; float xx = rotation.X * x; float xy = rotation.X * y; float yy = rotation.Y * y; float zz = rotation.Z * z; float num1 = (1.0f - yy - zz); float num2 = (xy - wz); float num3 = (xy + wz); float num4 = (1.0f - xx - zz); for (int i = 0; i < source.Length; ++i) { destination[i] = new Vec2( (source[i].X * num1) + (source[i].Y * num2), (source[i].X * num3) + (source[i].Y * num4)); } } /// /// Transforms a 2D vector by the given . /// /// The source vector. /// The transformation . /// When the method completes, contains the transformed . public static void Transform(ref Vec2 vector, ref Matrix transform, out Vec4 result) { result = new Vec4( (vector.X * transform.M11) + (vector.Y * transform.M21) + transform.M41, (vector.X * transform.M12) + (vector.Y * transform.M22) + transform.M42, (vector.X * transform.M13) + (vector.Y * transform.M23) + transform.M43, (vector.X * transform.M14) + (vector.Y * transform.M24) + transform.M44); } /// /// Transforms a 2D vector by the given . /// /// The source vector. /// The transformation . /// The transformed . public static Vec4 Transform(Vec2 vector, Matrix transform) { Vec4 result; Transform(ref vector, ref transform, out result); return result; } /// /// Transforms an array of 2D vectors by the given . /// /// The array of vectors to transform. /// The transformation . /// The array for which the transformed vectors are stored. /// Thrown when or is null. /// Thrown when is shorter in length than . public static void Transform(Vec2[] source, ref Matrix transform, Vec4[] destination) { if (source == null) throw new ArgumentNullException("source"); if (destination == null) throw new ArgumentNullException("destination"); if (destination.Length < source.Length) throw new ArgumentOutOfRangeException("destination", "The destination array must be of same length or larger length than the source array."); for (int i = 0; i < source.Length; ++i) { Transform(ref source[i], ref transform, out destination[i]); } } /// /// Performs a coordinate transformation using the given . /// /// The coordinate vector to transform. /// The transformation . /// When the method completes, contains the transformed coordinates. /// /// A coordinate transform performs the transformation with the assumption that the w component /// is one. The four dimensional vector obtained from the transformation operation has each /// component in the vector divided by the w component. This forces the wcomponent to be one and /// therefore makes the vector homogeneous. The homogeneous vector is often prefered when working /// with coordinates as the w component can safely be ignored. /// public static void TransformCoordinate(ref Vec2 coordinate, ref Matrix transform, out Vec2 result) { Vec4 vector = new Vec4(); vector.X = (coordinate.X * transform.M11) + (coordinate.Y * transform.M21) + transform.M41; vector.Y = (coordinate.X * transform.M12) + (coordinate.Y * transform.M22) + transform.M42; vector.Z = (coordinate.X * transform.M13) + (coordinate.Y * transform.M23) + transform.M43; vector.W = 1f / ((coordinate.X * transform.M14) + (coordinate.Y * transform.M24) + transform.M44); result = new Vec2(vector.X * vector.W, vector.Y * vector.W); } /// /// Performs a coordinate transformation using the given . /// /// The coordinate vector to transform. /// The transformation . /// The transformed coordinates. /// /// A coordinate transform performs the transformation with the assumption that the w component /// is one. The four dimensional vector obtained from the transformation operation has each /// component in the vector divided by the w component. This forces the wcomponent to be one and /// therefore makes the vector homogeneous. The homogeneous vector is often prefered when working /// with coordinates as the w component can safely be ignored. /// public static Vec2 TransformCoordinate(Vec2 coordinate, Matrix transform) { Vec2 result; TransformCoordinate(ref coordinate, ref transform, out result); return result; } /// /// Performs a coordinate transformation on an array of vectors using the given . /// /// The array of coordinate vectors to trasnform. /// The transformation . /// The array for which the transformed vectors are stored. /// This array may be the same array as . /// Thrown when or is null. /// Thrown when is shorter in length than . /// /// A coordinate transform performs the transformation with the assumption that the w component /// is one. The four dimensional vector obtained from the transformation operation has each /// component in the vector divided by the w component. This forces the wcomponent to be one and /// therefore makes the vector homogeneous. The homogeneous vector is often prefered when working /// with coordinates as the w component can safely be ignored. /// public static void TransformCoordinate(Vec2[] source, ref Matrix transform, Vec2[] destination) { if (source == null) throw new ArgumentNullException("source"); if (destination == null) throw new ArgumentNullException("destination"); if (destination.Length < source.Length) throw new ArgumentOutOfRangeException("destination", "The destination array must be of same length or larger length than the source array."); for (int i = 0; i < source.Length; ++i) { TransformCoordinate(ref source[i], ref transform, out destination[i]); } } /// /// Performs a normal transformation using the given . /// /// The normal vector to transform. /// The transformation . /// When the method completes, contains the transformed normal. /// /// A normal transform performs the transformation with the assumption that the w component /// is zero. This causes the fourth row and fourth collumn of the matrix to be unused. The /// end result is a vector that is not translated, but all other transformation properties /// apply. This is often prefered for normal vectors as normals purely represent direction /// rather than location because normal vectors should not be translated. /// public static void TransformNormal(ref Vec2 normal, ref Matrix transform, out Vec2 result) { result = new Vec2( (normal.X * transform.M11) + (normal.Y * transform.M21), (normal.X * transform.M12) + (normal.Y * transform.M22)); } /// /// Performs a normal transformation using the given . /// /// The normal vector to transform. /// The transformation . /// The transformed normal. /// /// A normal transform performs the transformation with the assumption that the w component /// is zero. This causes the fourth row and fourth collumn of the matrix to be unused. The /// end result is a vector that is not translated, but all other transformation properties /// apply. This is often prefered for normal vectors as normals purely represent direction /// rather than location because normal vectors should not be translated. /// public static Vec2 TransformNormal(Vec2 normal, Matrix transform) { Vec2 result; TransformNormal(ref normal, ref transform, out result); return result; } /// /// Performs a normal transformation on an array of vectors using the given . /// /// The array of normal vectors to transform. /// The transformation . /// The array for which the transformed vectors are stored. /// This array may be the same array as . /// Thrown when or is null. /// Thrown when is shorter in length than . /// /// A normal transform performs the transformation with the assumption that the w component /// is zero. This causes the fourth row and fourth collumn of the matrix to be unused. The /// end result is a vector that is not translated, but all other transformation properties /// apply. This is often prefered for normal vectors as normals purely represent direction /// rather than location because normal vectors should not be translated. /// public static void TransformNormal(Vec2[] source, ref Matrix transform, Vec2[] destination) { if (source == null) throw new ArgumentNullException("source"); if (destination == null) throw new ArgumentNullException("destination"); if (destination.Length < source.Length) throw new ArgumentOutOfRangeException("destination", "The destination array must be of same length or larger length than the source array."); for (int i = 0; i < source.Length; ++i) { TransformNormal(ref source[i], ref transform, out destination[i]); } } /// /// Adds two vectors. /// /// The first vector to add. /// The second vector to add. /// The sum of the two vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 operator +(Vec2 left, Vec2 right) { return new Vec2(left.X + right.X, left.Y + right.Y); } /// /// Assert a vector (return it unchanged). /// /// The vector to assert (unchange). /// The asserted (unchanged) vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 operator +(Vec2 value) { return value; } /// /// Subtracts two vectors. /// /// The first vector to subtract. /// The second vector to subtract. /// The difference of the two vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 operator -(Vec2 left, Vec2 right) { return new Vec2(left.X - right.X, left.Y - right.Y); } /// /// Reverses the direction of a given vector. /// /// The vector to negate. /// A vector facing in the opposite direction. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 operator -(Vec2 value) { return new Vec2(-value.X, -value.Y); } /// /// Modulates a vector with another by performing component-wise multiplication. /// /// The first vector to multiply. /// The second vector to multiply. /// The multiplication of the two vectors. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 operator *(Vec2 left, Vec2 right) { return new Vec2(left.X * right.X, left.Y * right.Y); } /// /// Scales a vector by the given value. /// /// The vector to scale. /// The amount by which to scale the vector. /// The scaled vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 operator *(float scale, Vec2 value) { return new Vec2(value.X * scale, value.Y * scale); } /// /// Scales a vector by the given value. /// /// The vector to scale. /// The amount by which to scale the vector. /// The scaled vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 operator *(Vec2 value, float scale) { return new Vec2(value.X * scale, value.Y * scale); } /// /// Scales a vector by the given value. /// /// The vector to scale. /// The amount by which to scale the vector. /// The scaled vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 operator /(Vec2 value, float scale) { return new Vec2(value.X / scale, value.Y / scale); } /// /// Divides a numerator by a vector. /// /// The numerator. /// The value. /// The scaled vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 operator /(float numerator, Vec2 value) { return new Vec2(numerator / value.X, numerator / value.Y); } /// /// Divides a vector by the given vector, component-wise. /// /// The vector to scale. /// The by. /// The scaled vector. [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Vec2 operator /(Vec2 value, Vec2 by) { return new Vec2(value.X / by.X, value.Y / by.Y); } /// /// Tests for equality between two objects. /// /// The first value to compare. /// The second value to compare. /// true if has the same value as ; otherwise, false. public static bool operator ==(Vec2 left, Vec2 right) { return left.Equals(right); } /// /// Tests for inequality between two objects. /// /// The first value to compare. /// The second value to compare. /// true if has a different value than ; otherwise, false. public static bool operator !=(Vec2 left, Vec2 right) { return !left.Equals(right); } /// /// Performs an explicit conversion from to . /// /// The value. /// The result of the conversion. public static explicit operator Vec3(Vec2 value) { return new Vec3(value, 0.0f); } /// /// Performs an explicit conversion from to . /// /// The value. /// The result of the conversion. public static explicit operator Vec4(Vec2 value) { return new Vec4(value, 0.0f, 0.0f); } /// /// Returns a that represents this instance. /// /// /// A that represents this instance. /// public override string ToString() { return string.Format(CultureInfo.CurrentCulture, "X:{0} Y:{1}", X, Y); } /// /// Returns a that represents this instance. /// /// The format. /// /// A that represents this instance. /// public string ToString(string format) { if (format == null) return ToString(); return string.Format(CultureInfo.CurrentCulture, "X:{0} Y:{1}", X.ToString(format, CultureInfo.CurrentCulture), Y.ToString(format, CultureInfo.CurrentCulture)); } /// /// Returns a that represents this instance. /// /// The format provider. /// /// A that represents this instance. /// public string ToString(IFormatProvider formatProvider) { return string.Format(formatProvider, "X:{0} Y:{1}", X, Y); } /// /// Returns a that represents this instance. /// /// The format. /// The format provider. /// /// A that represents this instance. /// public string ToString(string format, IFormatProvider formatProvider) { if (format == null) ToString(formatProvider); return string.Format(formatProvider, "X:{0} Y:{1}", X.ToString(format, formatProvider), Y.ToString(format, formatProvider)); } /// /// Returns a hash code for this instance. /// /// /// A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. /// public override int GetHashCode() { return X.GetHashCode() + Y.GetHashCode(); } /// /// Determines whether the specified is equal to this instance. /// /// The to compare with this instance. /// /// true if the specified is equal to this instance; otherwise, false. /// public bool Equals(Vec2 other) { return ((float)Math.Abs(other.X - X) < MathUtil.ZeroTolerance && (float)Math.Abs(other.Y - Y) < MathUtil.ZeroTolerance); } /// /// Determines whether the specified is equal to this instance. /// /// The to compare with this instance. /// /// true if the specified is equal to this instance; otherwise, false. /// public override bool Equals(object value) { if (value == null) return false; if (value.GetType() != GetType()) return false; return Equals((Vec2)value); } #if WPFInterop /// /// Performs an implicit conversion from to . /// /// The value. /// The result of the conversion. public static implicit operator System.Windows.Point(Vector2 value) { return new System.Windows.Point(value.X, value.Y); } /// /// Performs an explicit conversion from to . /// /// The value. /// The result of the conversion. public static explicit operator Vector2(System.Windows.Point value) { return new Vector2((float)value.X, (float)value.Y); } #endif #if XnaInterop /// /// Performs an implicit conversion from to . /// /// The value. /// The result of the conversion. public static implicit operator Microsoft.Xna.Framework.Vector2(Vector2 value) { return new Microsoft.Xna.Framework.Vector2(value.X, value.Y); } /// /// Performs an implicit conversion from to . /// /// The value. /// The result of the conversion. public static implicit operator Vector2(Microsoft.Xna.Framework.Vector2 value) { return new Vector2(value.X, value.Y); } #endif } }