Velocity() public static méthode

public static Velocity ( Vector3 st, Vector3 en, Vector3 ctrl, float t ) : Vector3
st Vector3
en Vector3
ctrl Vector3
t float
Résultat Vector3
Exemple #1
0
 public static Vector3 Velocity(Path pts, float t, EasingType ease = EasingType.Linear, bool easeIn = true, bool easeOut = true)
 {
     t = Ease(t);
     if (pts.Length == 0)
     {
         return(Vector3.zero);
     }
     else if (pts.Length == 1)
     {
         return(pts[0]);
     }
     else if (pts.Length == 2)
     {
         return(Vector3.Lerp(pts[0], pts[1], t));
     }
     else if (pts.Length == 3)
     {
         return(QuadBez.Velocity(pts[0], pts[2], pts[1], t));
     }
     else if (pts.Length == 4)
     {
         return(CubicBez.Velocity(pts[0], pts[3], pts[1], pts[2], t));
     }
     else
     {
         return(CRSpline.Velocity(Wrap(pts), t));
     }
 }
Exemple #2
0
 public static Vector3 Velocity(Path pts, float t, Easing.EaseType easeType = Easing.EaseType.linear)
 {
     t = Easing.ease(easeType, t);
     if (pts.Length == 0)
     {
         return(Vector3.zero);
     }
     else if (pts.Length == 1)
     {
         return(pts[0]);
     }
     else if (pts.Length == 2)
     {
         return(Vector3.Lerp(pts[0], pts[1], t));
     }
     else if (pts.Length == 3)
     {
         return(QuadBez.Velocity(pts[0], pts[2], pts[1], t));
     }
     else if (pts.Length == 4)
     {
         return(CubicBez.Velocity(pts[0], pts[3], pts[1], pts[2], t));
     }
     else
     {
         return(CRSpline.Velocity(Wrap(pts), t));
     }
 }
Exemple #3
0
    public static void GizmoDraw(Vector3 st, Vector3 en, Vector3 ctrl, float t)
    {
        Gizmos.color = Color.red;
        Gizmos.DrawLine(st, ctrl);
        Gizmos.DrawLine(ctrl, en);
        Gizmos.color = Color.white;
        Vector3 to = st;

        for (int i = 1; i <= 20; i++)
        {
            float   t2     = (float)i / 20f;
            Vector3 vector = QuadBez.Interp(st, en, ctrl, t2);
            Gizmos.DrawLine(vector, to);
            to = vector;
        }
        Gizmos.color = Color.blue;
        Vector3 vector2 = QuadBez.Interp(st, en, ctrl, t);

        Gizmos.DrawLine(vector2, vector2 + QuadBez.Velocity(st, en, ctrl, t));
    }