Here are the examples of the csharp api UnityEngine.Quaternion.INTERNAL_CALL_Slerp(ref UnityEngine.Quaternion, ref UnityEngine.Quaternion, float, out UnityEngine.Quaternion) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
2 Examples
19
View Source File : Quaternion.cs
License : MIT License
Project Creator : bbepis
License : MIT License
Project Creator : bbepis
public static Quaternion Slerp( Quaternion a, Quaternion b, float t )
{
INTERNAL_CALL_Slerp( ref a, ref b, t, out Quaternion value );
return value;
}
19
View Source File : Quaternion.cs
License : MIT License
Project Creator : NathanWarden
License : MIT License
Project Creator : NathanWarden
public static Quaternion Slerp (Quaternion a, Quaternion b, float t)
{
Quaternion result;
Quaternion.INTERNAL_CALL_Slerp (ref a, ref b, t, out result);
return result;
}