BezierCurves.BezierCurve3D.GetRotation C# (CSharp) 메소드

GetRotation() 공개 메소드

public GetRotation ( float time, Vector3 up ) : Quaternion
time float
up UnityEngine.Vector3
리턴 UnityEngine.Quaternion
        public Quaternion GetRotation(float time, Vector3 up)
        {
            BezierPoint3D startPoint;
            BezierPoint3D endPoint;
            float timeRelativeToSegment;

            this.GetCubicSegment(time, out startPoint, out endPoint, out timeRelativeToSegment);

            return BezierCurve3D.GetRotationOnCubicCurve(timeRelativeToSegment, up, startPoint, endPoint);
        }