CatmullRom() public static method

public static CatmullRom ( Vector3 previous, Vector3 start, Vector3 end, Vector3 next, float elapsedTime ) : Vector3
previous Vector3
start Vector3
end Vector3
next Vector3
elapsedTime float
return Vector3
Ejemplo n.º 1
0
 public static Vector3 CatmullRomOLD(Vector3 previous, Vector3 start, Vector3 end, Vector3 next, float elapsedTime)
 {
     return(AstarSplines.CatmullRom(previous, start, end, next, elapsedTime));
 }