Exemplo n.º 1
0
 public Vector3 GetVelocity(float t)
 {
     return(transform.TransformPoint(Bezier.GetFirstDerivative(points[0], points[1], points[2], points[3], t)) -
            transform.position);
 }
Exemplo n.º 2
0
 public Vector3 GetPoint(float t) //t is the distance/time between points
 {
     return(transform.TransformPoint(Bezier.GetPoint(points[0], points[1], points[2], points[3], t)));
 }