Skip to content
This repository was archived by the owner on Dec 13, 2025. It is now read-only.

VRageMath.Vector4.Transform

Malware edited this page Dec 24, 2018 · 23 revisions

IndexVector4

Vector4 Transform(Vector2 position, Matrix matrix)

Summary

Transforms a Vector2 by the given Matrix.

void Transform(ref Vector2 position, ref Matrix matrix, ref Vector4 result)

Summary

Transforms a Vector2 by the given Matrix.

Vector4 Transform(Vector3 position, Matrix matrix)

Summary

Transforms a Vector3 by the given Matrix.

void Transform(ref Vector3 position, ref Matrix matrix, ref Vector4 result)

Summary

Transforms a Vector3 by the given Matrix.

Vector4 Transform(Vector4 vector, Matrix matrix)

Summary

Transforms a Vector4 by the specified Matrix.

void Transform(ref Vector4 vector, ref Matrix matrix, ref Vector4 result)

Summary

Transforms a Vector4 by the given Matrix.

Vector4 Transform(Vector2 value, Quaternion rotation)

Summary

Transforms a Vector2 by a specified Quaternion into a Vector4.

void Transform(ref Vector2 value, ref Quaternion rotation, ref Vector4 result)

Summary

Transforms a Vector2 by a specified Quaternion into a Vector4.

Vector4 Transform(Vector3 value, Quaternion rotation)

Summary

Transforms a Vector3 by a specified Quaternion into a Vector4.

void Transform(ref Vector3 value, ref Quaternion rotation, ref Vector4 result)

Summary

Transforms a Vector3 by a specified Quaternion into a Vector4.

Vector4 Transform(Vector4 value, Quaternion rotation)

Summary

Transforms a Vector4 by a specified Quaternion.

void Transform(ref Vector4 value, ref Quaternion rotation, ref Vector4 result)

Summary

Transforms a Vector4 by a specified Quaternion.

void Transform(Vector4[] sourceArray, ref Matrix matrix, Vector4[] destinationArray)

Summary

Transforms an array of Vector4s by a specified Matrix.

void Transform(Vector4[] sourceArray, int sourceIndex, ref Matrix matrix, Vector4[] destinationArray, int destinationIndex, int length)

Summary

Transforms a specified range in an array of Vector4s by a specified Matrix into a specified range in a destination array.

void Transform(Vector4[] sourceArray, ref Quaternion rotation, Vector4[] destinationArray)

Summary

Transforms an array of Vector4s by a specified Quaternion.

void Transform(Vector4[] sourceArray, int sourceIndex, ref Quaternion rotation, Vector4[] destinationArray, int destinationIndex, int length)

Summary

Transforms a specified range in an array of Vector4s by a specified Quaternion into a specified range in a destination array.

Clone this wiki locally