-
Notifications
You must be signed in to change notification settings - Fork 123
VRageMath.Vector3I
← Index ← Namespace Index
public struct Vector3I: IEquatable<Vector3I>, IComparable<Vector3I>
Namespace: VRageMath
Assembly: VRage.Math.dll
Implements:
static EqualityComparer Comparer
How many cubes are in block with this size
Vector3I(float x, float y, float z)
Vector3I(Byte[] bytes, int index)
static Vector3I Abs(Vector3I value)
static void Abs(ref Vector3I value, out Vector3I result)
static bool BoxContains(Vector3I boxMin, Vector3I boxMax, Vector3I pt)
static bool BoxContains(ref Vector3I boxMin, ref Vector3I boxMax, ref Vector3I pt)
static bool BoxIntersects(Vector3I minA, Vector3I maxA, Vector3I minB, Vector3I maxB)
static Vector3I Ceiling(Vector3 value)
static Vector3I Ceiling(Vector3D value)
static Vector3I Clamp(Vector3I value1, Vector3I min, Vector3I max)
static void Clamp(ref Vector3I value1, ref Vector3I min, ref Vector3I max, out Vector3I result)
static void Cross(ref Vector3I vector1, ref Vector3I vector2, out Vector3I result)
Calculates the cross product of two vectors.
static int DistanceManhattan(Vector3I first, Vector3I second)
Manhattan distance (cube distance) X + Y + Z of Abs(first - second)
static Vector3I DominantAxisProjection(Vector3I value1)
Returns a vector that is equal to the projection of the input vector to the coordinate axis that corresponds to the original vector's largest value.
static void DominantAxisProjection(ref Vector3I value1, out Vector3I result)
Calculates a vector that is equal to the projection of the input vector to the coordinate axis that corresponds to the original vector's largest value. The result is saved into a user-specified variable.
static int Dot(Vector3I vector1, Vector3I vector2)
static int Dot(ref Vector3I vector1, ref Vector3I vector2)
static void Dot(ref Vector3I vector1, ref Vector3I vector2, out int dot)
static IEnumerable<Vector3I> EnumerateRange(Vector3I minInclusive, Vector3I maxExclusive)
Enumerate all values in a integer interval (a cuboid). This method is an allocating version of the Vector3I_RangeIterator. This once can be used in the foreach syntax though so it's more convenient for debug routines.
static Vector3I Floor(Vector3 value)
static Vector3I Floor(Vector3D value)
static void Floor(ref Vector3 v, out Vector3I r)
static void Floor(ref Vector3D v, out Vector3I r)
static CubeFace GetDominantDirection(Vector3I val)
static Vector3I GetDominantDirectionVector(Vector3I val)
static Vector3I Max(Vector3I value1, Vector3I value2)
static void Max(ref Vector3I value1, ref Vector3I value2, out Vector3I result)
static Vector3I Min(Vector3I value1, Vector3I value2)
static void Min(ref Vector3I value1, ref Vector3I value2, out Vector3I result)
static void MinMax(ref Vector3I min, ref Vector3I max)
Separates minimal and maximal values of any two input vectors
static Vector3I Round(Vector3 value)
static Vector3I Round(Vector3D value)
static void Round(ref Vector3 v, out Vector3I r)
static void Round(ref Vector3D v, out Vector3I r)
static Vector3I Shift(Vector3I value)
static Vector3I Sign(Vector3 value)
static Vector3I Sign(Vector3I value)
static void Transform(ref Vector3I position, ref Matrix matrix, out Vector3I result)
Transforms a Vector3I by the given Matrix.
static void Transform(ref Vector3I value, ref Quaternion rotation, out Vector3I result)
static Vector3I Transform(Vector3I value, Quaternion rotation)
static void Transform(ref Vector3I value, ref MatrixI matrix, out Vector3I result)
static Vector3I Transform(Vector3I value, MatrixI transformation)
static Vector3I Transform(Vector3I value, ref MatrixI transformation)
static Vector3I TransformNormal(Vector3I value, ref MatrixI transformation)
static void TransformNormal(ref Vector3I normal, ref Matrix matrix, out Vector3I result)
Transforms a vector normal by a matrix.
static void TransformNormal(ref Vector3I normal, ref MatrixI matrix, out Vector3I result)
static Vector3I Trunc(Vector3 value)
static bool TryParseFromString(string p, out Vector3I vec)
Returns the component of the vector, whose absolute value is largest of all the three components.
Returns the component of the vector, whose absolute value is smallest of all the three components.
bool IsInside(ref Vector3I inclusiveMin, ref Vector3I exclusiveMax)
bool IsInside(Vector3I inclusiveMin, Vector3I exclusiveMax)
bool IsInsideInclusiveEnd(ref Vector3I min, ref Vector3I max)
bool IsInsideInclusiveEnd(Vector3I min, Vector3I max)
int RectangularDistance(Vector3I otherVector)
Calculates rectangular distance. It's how many sectors you have to travel to get to other sector from current sector.
Calculates rectangular distance of this vector, interpreted as a point, from the origin.
void ToBytes(List<byte> result)
Do you have questions, comments, suggestions for improvements? Is there something I can do better? Did I make a mistake? Please add an issue here, and prefix your issue title with Wiki. Thank you, your help will be very appreciated!