/// <summary>
        /// Calculates the second derivative on the spline at fraction t
        /// </summary>
        public override Vector3 EvaluateSecondDerivative( float t )
        {
            Evaluator eval = new Evaluator( );
            MakeEvaluator( ref eval, this, t );

            return eval.EvaluateSecondDerivative( );
        }