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

VRageMath.Vector3D.Transform

Malware edited this page Dec 25, 2018 · 23 revisions

IndexVector3D

Summary

public Vector3D Transform(Vector3D value, Quaternion rotation)

Transforms a Vector3 by a specified Quaternion rotation.

Returns

Vector3D

Summary

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

Transforms a Vector3 by a specified Quaternion rotation.

Summary

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

Transforms a source array of Vector3s by a specified Matrix and writes the results to an existing destination array.

Summary

public void Transform(Vector3D[] sourceArray, ref MatrixD matrix, *Vector3D destinationArray)

Summary

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

Applies a specified transform Matrix to a specified range of an array of Vector3s and writes the results into a specified range of a destination array.

Summary

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

Transforms a source array of Vector3s by a specified Quaternion rotation and writes the results to an existing destination array.

Summary

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

Applies a specified Quaternion rotation to a specified range of an array of Vector3s and writes the results into a specified range of a destination array.

Summary

public Vector3D Transform(Vector3D position, MatrixD matrix)

Transforms a 3D vector by the given matrix.

Returns

Vector3D

Summary

public Vector3D Transform(Vector3 position, MatrixD matrix)

Returns

Vector3D

Summary

public Vector3D Transform(Vector3D position, Matrix matrix)

Transforms a 3D vector by the given matrix.

Returns

Vector3D

Summary

public Vector3D Transform(Vector3D position, ref MatrixD matrix)

Returns

Vector3D

Summary

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

Transforms a Vector3 by the given Matrix.

Summary

public void Transform(ref Vector3 position, ref MatrixD matrix, ref Vector3D result)

Summary

public void Transform(ref Vector3D position, ref MatrixI matrix, ref Vector3D result)
Clone this wiki locally