about summary refs log tree commit diff
path: root/converter/other/pamtosvg/curve.h
diff options
context:
space:
mode:
Diffstat (limited to 'converter/other/pamtosvg/curve.h')
-rw-r--r--converter/other/pamtosvg/curve.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/converter/other/pamtosvg/curve.h b/converter/other/pamtosvg/curve.h
index 5c499950..d251df84 100644
--- a/converter/other/pamtosvg/curve.h
+++ b/converter/other/pamtosvg/curve.h
@@ -33,10 +33,6 @@ typedef struct curve {
     unsigned       length;
         /* Number of points in the curve */
     bool           cyclic;
-    vector_type    begSlope;
-        /* Slope of the curve (i.e. of tangent line) at its end point */
-    vector_type    endSlope;
-        /* Slope of the curve (i.e. of tangent line) at its start point */
 
     /* 'previous' and 'next' links are for the doubly linked list which is
        a chain of all curves in an outline.  The chain is a cycle for a
@@ -73,9 +69,6 @@ typedef struct curve * curve_type;
   ? CURVE_CYCLIC (c) ? (signed int) CURVE_LENGTH (c) + (signed int) (n) - 1 : -1\
   : (signed int) (n) - 1)
 
-#define CURVE_BEG_SLOPE(c) ((c)->begSlope)
-#define CURVE_END_SLOPE(c) ((c)->endSlope)
-
 static __inline__ vector_type
 curve_slope_none(void) {
     vector_type const retval = {0.0, 0.0, 0.0};