码迷,mamicode.com
首页 > 编程语言 > 详细

unity 四元数, 两行等价的代码

时间:2015-02-09 17:37:40      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

Vector3 tmpvc;

1. tmpvc = Quaternion.Euler (new Vector3 (0, 30, 0)) * new Vector3 (0, 0, 1);
2. tmpvc = new Vector3 (sin (30.0f), 0, cos (30.0f));
        
transform.position = target.transform.position + tmpvc.normalized * 5;

  第二个tmpvc 不用normalized 

 

 

  float sin (float v)
    {
        return Mathf.Sin (real (v));
    }
    
    float cos (float v)
    {
        return Mathf.Cos (real (v));
    }

 

   float real (float v)
    {
        return v / 180.0f * 3.1415926f;
    }

unity 四元数, 两行等价的代码

标签:

原文地址:http://www.cnblogs.com/lightlfyan/p/4281686.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!