The Vector2D type exposes the following members.

Constructors

  NameDescription
Public methodVector2D(Double)
Makes a 2d-vector from 1 value, all vector components are set to the input value
Public methodVector2D(Vector2D)
Copies a 2d-vecor
Public methodVector2D(Double, Double)
Makes a 2d-vector from 2 values

Methods

  NameDescription
Public methodEquals(Object) (Overrides ValueType..::..Equals(Object).)
Public methodEquals(Vector2D)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode (Overrides ValueType..::..GetHashCode()()()().)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)

Operators

  NameDescription
Public operatorStatic memberAddition(Double, Vector2D)
value + vector, adds a value to all vector components
Public operatorStatic memberAddition(Vector2D, Double)
vector + value, adds a value to all vector components
Public operatorStatic memberAddition(Vector2D, Vector2D)
vector + vector, adds the values of two vectors component wise
Public operatorStatic memberBitwiseAnd
2d-vector & 2d-vector, performs a 2d-cross product, this is the signed size of the parallelogram spanned by v1 and v2.
Public operatorStatic memberBitwiseOr
vector | vector, dot product for vectors, that is the sum of all component wise products
Public operatorStatic memberDivision(Double, Vector2D)
value / vector, divides a value by all vector components
Public operatorStatic memberDivision(Vector2D, Double)
vector / value, divides all vector components by a value
Public operatorStatic memberDivision(Vector2D, Vector2D)
vector / vector, divides the values of two vectors component wise
Public operatorStatic memberEquality
vector == vector, checks if the two vectors are equal
Public operatorStatic memberGreaterThan
vector > value, compares all vector components to a value
Public operatorStatic memberGreaterThanOrEqual
vector >= value, compares all vector components to a value
Public operatorStatic memberInequality
vector != vector, checks if the two vectors are not equal
Public operatorStatic memberLessThan
vector < value, compares all vector components to a value
Public operatorStatic memberLessThanOrEqual
vector <= value, compares all vector components to a value
Public operatorStatic memberLogicalNot
! vector, calculates the length of the vector
Public operatorStatic memberModulus(Double, Vector2D)
value % vector, a value modulo all vector components
Public operatorStatic memberModulus(Vector2D, Double)
vector % value, all vector components modulo a value
Public operatorStatic memberModulus(Vector2D, Vector2D)
vector % vector, component wise modulo for vectors
Public operatorStatic memberMultiply(Double, Vector2D)
value * vector, multiplies a value by all vector components
Public operatorStatic memberMultiply(Vector2D, Double)
vector * value, multiplies a value by all vector components
Public operatorStatic memberMultiply(Vector2D, Vector2D)
vector * vector, multiplies the values of two vectors component wise
Public operatorStatic memberOnesComplement
~ vector, normalizes a vector
Public operatorStatic memberSubtraction(Double, Vector2D)
value - vector, subtracts all vector components from a value
Public operatorStatic memberSubtraction(Vector2D, Double)
vector - value, subtracts a value from all vector components
Public operatorStatic memberSubtraction(Vector2D, Vector2D)
vector - vector, subtracts the components of v2 from the components of v1
Public operatorStatic memberUnaryNegation
- vector, flips the sign off all vector components
Public operatorStatic memberUnaryPlus
+ vector, makes no changes to a vector

Extension Methods

  NameDescription
Public Extension MethodToSlimDXVector
Converts a Vector2D to a Vector2.
(Defined by VectorExtensions.)

Fields

  NameDescription
Public fieldx
Data component for the x dimension
Public fieldy
Data component for the y dimension

Properties

  NameDescription
Public propertyItem
Unsafe but very fast indexer for 2d-vector, [0..1]
Public propertyLength
Get or Set the Length of this vector

See Also