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

VRageMath.Vector4D.Transform

Malware edited this page Dec 25, 2018 · 23 revisions

IndexVector4D

Summary

public public sealed struct Vector4D Transform(public sealed struct Vector2 position, public sealed struct MatrixD matrix)

Transforms a Vector2 by the given Matrix.

Returns

Example

Remarks

Summary

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

Transforms a Vector2 by the given Matrix.

Returns

Example

Remarks

Summary

public public sealed struct Vector4D Transform(public sealed struct Vector3D position, public sealed struct MatrixD matrix)

Transforms a Vector3 by the given Matrix.

Returns

Example

Remarks

Summary

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

Transforms a Vector3 by the given Matrix.

Returns

Example

Remarks

Summary

public public sealed struct Vector4D Transform(public sealed struct Vector4D vector, public sealed struct MatrixD matrix)

Transforms a Vector4 by the specified Matrix.

Returns

Example

Remarks

Summary

public void Transform(ref public sealed struct Vector4D vector, ref public sealed struct MatrixD matrix, ref public sealed struct Vector4D result)

Transforms a Vector4 by the given Matrix.

Returns

Example

Remarks

Summary

public public sealed struct Vector4D Transform(public sealed struct Vector2 value, public sealed struct Quaternion rotation)

Transforms a Vector2 by a specified Quaternion into a Vector4.

Returns

Example

Remarks

Summary

public void Transform(ref public sealed struct Vector2 value, ref public sealed struct Quaternion rotation, ref public sealed struct Vector4D result)

Transforms a Vector2 by a specified Quaternion into a Vector4.

Returns

Example

Remarks

Summary

public public sealed struct Vector4D Transform(public sealed struct Vector3D value, public sealed struct Quaternion rotation)

Transforms a Vector3 by a specified Quaternion into a Vector4.

Returns

Example

Remarks

Summary

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

Transforms a Vector3 by a specified Quaternion into a Vector4.

Returns

Example

Remarks

Summary

public public sealed struct Vector4D Transform(public sealed struct Vector4D value, public sealed struct Quaternion rotation)

Transforms a Vector4 by a specified Quaternion.

Returns

Example

Remarks

Summary

public void Transform(ref public sealed struct Vector4D value, ref public sealed struct Quaternion rotation, ref public sealed struct Vector4D result)

Transforms a Vector4 by a specified Quaternion.

Returns

Example

Remarks

Summary

public void Transform(public sealed class Vector4D[] sourceArray, ref public sealed struct MatrixD matrix, public sealed class Vector4D[] destinationArray)

Transforms an array of Vector4s by a specified Matrix.

Returns

Example

Remarks

Summary

public void Transform(public sealed class Vector4D[] sourceArray, int sourceIndex, ref public sealed struct MatrixD matrix, public sealed class Vector4D[] destinationArray, int destinationIndex, int length)

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

Returns

Example

Remarks

Summary

public void Transform(public sealed class Vector4D[] sourceArray, ref public sealed struct Quaternion rotation, public sealed class Vector4D[] destinationArray)

Transforms an array of Vector4s by a specified Quaternion.

Returns

Example

Remarks

Summary

public void Transform(public sealed class Vector4D[] sourceArray, int sourceIndex, ref public sealed struct Quaternion rotation, public sealed class Vector4D[] destinationArray, int destinationIndex, int length)

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

Returns

Example

Remarks

Clone this wiki locally