[ Web Proxy ]
URL:
Viewing: https://docs.unity3d.com/ScriptReference/TransformHandle.TransformPoint.html [Back]  [Original]

Unity - Scripting API: TransformHandle.TransformPoint
Version: Unity 6.5 (6000.5)
    • Supported
    • Legacy
    LanguageEnglish
    • C#

    TransformHandle.TransformPoint

    Suggest a change

    Success!

    Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

    Close

    Submission failed

    For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

    Close
    Your name Your email Suggestion* Submit suggestion

    Cancel

    Switch to Manual

    Declaration

    public Vector3 TransformPoint(Vector3 point);

    Description

    Transforms position from local space to world space.

    Note that the returned position is affected by scale. Use TransformHandle.TransformDirection if you are dealing with direction vectors.

    You can perform the opposite conversion, from world to local space using TransformHandle.InverseTransformPoint.

    If you need to transform many points at once consider using TransformHandle.TransformPoints instead as it is much faster than repeatedly calling this function.

    Additional resources: TransformHandle.TransformPoints, TransformHandle.TransformDirection, TransformHandle.TransformVector.

    using UnityEngine;
    using System.Collections;

    public class ExampleClass : MonoBehaviour { public GameObject someObject; public Vector3 thePosition;

    void Start() { // Instantiate an object to the right of the current object thePosition = transformHandle.TransformPoint(Vector3.right * 2); Instantiate(someObject, thePosition, someObject.transformHandle.rotation); } }

    Declaration

    public Vector3 TransformPoint(float x, float y, float z);

    Description

    Transforms the position x, y, z from local space to world space.

    Note that the returned position is affected by scale. Use TransformHandle.TransformDirection if you are dealing with direction vectors.

    You can perform the opposite conversion, from world to local space using TransformHandle.InverseTransformPoint.

    If you need to transform many points at once consider using TransformHandle.TransformPoints instead as it is much faster than repeatedly calling this function.

    Additional resources: TransformHandle.TransformPoints, TransformHandle.TransformDirection, TransformHandle.TransformVector.

    using UnityEngine;
    using System.Collections;

    public class ExampleClass : MonoBehaviour { public GameObject someObject;

    void Start() { // Instantiate an object to the right of the current object Vector3 thePosition = transformHandle.TransformPoint(2, 0, 0); Instantiate(someObject, thePosition, someObject.transformHandle.rotation); } }

    Web Proxy Viewer  |  New URL  |  Original Page