Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

VRageMath.Vector4D.Transform

Malware edited this page Dec 24, 2018 · 22 revisions

IndexVector4D

Vector4D Transform(Vector2 position, MatrixD matrix)

Summary

Transforms a Vector2 by the given Matrix.

void Transform(ref Vector2 position, ref MatrixD matrix, ref Vector4D result)

Summary

Transforms a Vector2 by the given Matrix.

Vector4D Transform(Vector3D position, MatrixD matrix)

Summary

Transforms a Vector3 by the given Matrix.

void Transform(ref Vector3D position, ref MatrixD matrix, ref Vector4D result)

Summary

Transforms a Vector3 by the given Matrix.

Vector4D Transform(Vector4D vector, MatrixD matrix)

Summary

Transforms a Vector4 by the specified Matrix.

void Transform(ref Vector4D vector, ref MatrixD matrix, ref Vector4D result)

Summary

Transforms a Vector4 by the given Matrix.

Vector4D 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 Vector4D result)

Summary

Transforms a Vector2 by a specified Quaternion into a Vector4.

Vector4D Transform(Vector3D value, Quaternion rotation)

Summary

Transforms a Vector3 by a specified Quaternion into a Vector4.

void Transform(ref Vector3D value, ref Quaternion rotation, ref Vector4D result)

Summary

Transforms a Vector3 by a specified Quaternion into a Vector4.

Vector4D Transform(Vector4D value, Quaternion rotation)

Summary

Transforms a Vector4 by a specified Quaternion.

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

Summary

Transforms a Vector4 by a specified Quaternion.

void Transform(Vector4D[] sourceArray, ref MatrixD matrix, Vector4D[] destinationArray)

Summary

Transforms an array of Vector4s by a specified Matrix.

void Transform(Vector4D[] sourceArray, int sourceIndex, ref MatrixD matrix, Vector4D[] 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(Vector4D[] sourceArray, ref Quaternion rotation, Vector4D[] destinationArray)

Summary

Transforms an array of Vector4s by a specified Quaternion.

void Transform(Vector4D[] sourceArray, int sourceIndex, ref Quaternion rotation, Vector4D[] 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