Commit 0f2a1ed758d8ac35a5ef7ea43bbdd00ea86e2bfc

henry 2002-12-14T22:02:35

Removed conic and cubic functions

diff --git a/include/FTContour.h b/include/FTContour.h
index 0c2a359..2f30f1c 100644
--- a/include/FTContour.h
+++ b/include/FTContour.h
@@ -77,22 +77,6 @@ class FTGL_EXPORT FTContour
          * @param point The point to be added to the contour.
          */
         void AddPoint( FTPoint point);
-
-        /**
-         * Process a conic (second order) bezier curve.
-         *
-         * @param index
-         * @param pointList
-         */
-        void EvaluateConicCurve( const int index, const FTVector<ContourPoint>& pointList);
-
-        /**
-         * Process a cubic (third order) bezier curve.
-         *
-         * @param index
-         * @param pointList
-         */
-        void EvaluateCubicCurve( const int index, const FTVector<ContourPoint>& pointList);
         
         /**
          * De Casteljau (bezier) algorithm contributed by Jed Soane