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

VRageMath.Vector2.TransformNormal

Malware edited this page Dec 24, 2018 · 23 revisions

IndexVector2

Vector2 TransformNormal(Vector2 normal, Matrix matrix)

Summary

Transforms a 2D vector normal by a matrix.

void TransformNormal(ref Vector2 normal, ref Matrix matrix, ref Vector2 result)

Summary

Transforms a vector normal by a matrix.

void TransformNormal(Vector2[] sourceArray, ref Matrix matrix, Vector2[] destinationArray)

Summary

Transforms an array of Vector2 vector normals by a specified Matrix.

void TransformNormal(Vector2[] sourceArray, int sourceIndex, ref Matrix matrix, Vector2[] destinationArray, int destinationIndex, int length)

Summary

Transforms a specified range in an array of Vector2 vector normals by a specified Matrix and places the results in a specified range in a destination array.

Clone this wiki locally