aiQuaternion.Interpolate C# (CSharp) Method

Interpolate() public static method

public static Interpolate ( aiQuaternion, pOut, aiQuaternion, pStart, aiQuaternion, pEnd, float pFactor ) : void
pOut aiQuaternion,
pStart aiQuaternion,
pEnd aiQuaternion,
pFactor float
return void
  public static void Interpolate(aiQuaternion pOut, aiQuaternion pStart, aiQuaternion pEnd, float pFactor) {
    AssimpPINVOKE.aiQuaternion_Interpolate(aiQuaternion.getCPtr(pOut), aiQuaternion.getCPtr(pStart), aiQuaternion.getCPtr(pEnd), pFactor);
    if (AssimpPINVOKE.SWIGPendingException.Pending) throw AssimpPINVOKE.SWIGPendingException.Retrieve();
  }