您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Unity中怎么將向量按照某一點進行旋轉,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
一、unity的旋轉
首先要知道一點就是在Unity的旋轉中使用過四元數進行旋轉的,如果對一個物體的rotation直接賦值你會發現結果不是你最終想要的結果,這個時候我們需要去借助Quaternion來進行旋轉。
二、向量按照原點進行旋轉
用到的Unity內置方法Quaternion.AngleAxis(float angle,Vector3 axis)
第一個參數就是我們需要旋轉的角度 angle大于0時是按照順時針的方向進行旋轉,angle小于0是按照逆時針的方向旋轉,這里的旋轉時按照坐標原點進行的旋轉。
第二個參數是旋轉軸,圍繞哪一個坐標軸進行旋轉。
注意:使用這個方法時獲得的也是四元數,我們將其轉換成向量Vector3是需要乘以自身的坐標(四元數 * 自身向量,如果反過來 自身向量 * 四元數 在Unity會發生編譯錯誤,這里需要注意一下)
案例:將Vector3(1,0,1)按照原點旋轉45°,90°,180°,270°測試分別用黑、黃、藍、綠顏色表示
代碼如下:
using UnityEngine; [ExecuteInEditMode] public class VectorDirTest : MonoBehaviour { // Update is called once per frame void Update () { Debug.DrawLine(Vector3.left * 5f,Vector3.right * 5f,Color.red); Debug.DrawLine(Vector3.up * 5f,Vector3.down * 5f,Color.green); Debug.DrawLine(Vector3.forward * 5f,Vector3.back * 5f,Color.blue); Vector3 dir = new Vector3(1,0,1); Debug.DrawLine(Vector3.zero,dir,Color.white); Debug.DrawLine(Vector3.zero,Quaternion.AngleAxis(45,Vector3.up) * dir,Color.black); Debug.DrawLine(Vector3.zero,Quaternion.AngleAxis(90,Vector3.up) * dir,Color.yellow); Debug.DrawLine(Vector3.zero,Quaternion.AngleAxis(180,Vector3.up) * dir,Color.blue); Debug.DrawLine(Vector3.zero,Quaternion.AngleAxis(270,Vector3.up) * dir,Color.green); } }
三、向量按照指定位置進行旋轉
/// <summary> /// 圍繞某點旋轉指定角度 /// </summary> /// <param name="position">自身坐標</param> /// <param name="center">旋轉中心</param> /// <param name="axis">圍繞旋轉軸</param> /// <param name="angle">旋轉角度</param> /// <returns></returns> public Vector3 RotateRound(Vector3 position, Vector3 center, Vector3 axis, float angle) { return Quaternion.AngleAxis(angle, axis) * (position - center) + center; }
案例:將Vector3(1,0,1)按照Vector(2,0,2)旋轉45°,90°,180°,270°測試分別用紅、黃、藍、綠顏色表示
代碼如下:
using UnityEngine; [ExecuteInEditMode] public class VectorDirTest : MonoBehaviour { // Update is called once per frame void Update () { Debug.DrawLine(Vector3.left * 5f,Vector3.right * 5f,Color.red); Debug.DrawLine(Vector3.up * 5f,Vector3.down * 5f,Color.green); Debug.DrawLine(Vector3.forward * 5f,Vector3.back * 5f,Color.blue); Vector3 dir = new Vector3(1,0,1); Vector3 point = new Vector3(2,0,2); Debug.DrawLine(Vector3.zero, RotateRound(dir, point, Vector3.up, 45), Color.red); Debug.DrawLine(Vector3.zero, RotateRound(dir, point, Vector3.up, 90), Color.yellow); Debug.DrawLine(Vector3.zero, RotateRound(dir, point, Vector3.up, 180), Color.blue); Debug.DrawLine(Vector3.zero, RotateRound(dir, point, Vector3.up, 270), Color.green); Debug.DrawLine(Vector3.zero, dir, Color.black); } /// <summary> /// 圍繞某點旋轉指定角度 /// </summary> /// <param name="position">自身坐標</param> /// <param name="center">旋轉中心</param> /// <param name="axis">圍繞旋轉軸</param> /// <param name="angle">旋轉角度</param> /// <returns></returns> public Vector3 RotateRound(Vector3 position, Vector3 center, Vector3 axis, float angle) { return Quaternion.AngleAxis(angle, axis) * (position - center) + center; } }
關于Unity中怎么將向量按照某一點進行旋轉就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。