Version: 2022.3
언어: 한국어

Transform.TransformVectors

매뉴얼로 전환
public void TransformVectors (Span<Vector3> vectors);

파라미터

vectors The vectors to be transformed, each is replaced by the transformed version.

설명

Transforms multiple vectors from local space to world space overwriting each original vector with the transformed version.

This operation is not affected by the position of the transform, but it is affected by scale. The transformed vectors may have a different length to the original versions.

If you need the inverse operation to transform from world space to local space you can use Transform.InverseTransformVectors

See Also:Transform.TransformVector, Transform.InverseTransformVectors, Transform.TransformPoint, Transform.TransformDirection.


public void TransformVectors (ReadOnlySpan<Vector3> vectors, Span<Vector3> transformedVectors);

파라미터

vectors The vectors to be transformed, these vectors are not modified by the function unless the transformedVectors span overlaps.
transformedVectors Receives the transformed vectors, must be the same length as vectors otherwise an exception will be thrown. If this span overlaps vectors other than representing the exact same elements the behaviour is undefined.

설명

Transforms multiple vectors from local space to world space writing the transformed versions to a possibly different location.

This operation is not affected by the position of the transform, but is is affected by scale.The transformed vectors may have a different length to the original versions.

If you need the inverse operation to transform from world space to local space you can use Transform.InverseTransformVectors

See Also:Transform.TransformVector, Transform.InverseTransformVectors, Transform.TransformPoint, Transform.TransformDirection.

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961