26 #ifndef __vtkBezierContourLineInterpolator_h
27 #define __vtkBezierContourLineInterpolator_h
29 #include "vtkInteractionWidgetsModule.h"
57 vtkGetMacro(MaximumCurveError,
double);
63 vtkSetClampMacro(MaximumCurveLineSegments,
int, 1, 1000);
64 vtkGetMacro(MaximumCurveLineSegments,
int);
84 void ComputeMidpoint(
double p1[3],
double p2[3],
double mid[3] )
86 mid[0] = (p1[0] + p2[0])/2;
87 mid[1] = (p1[1] + p2[1])/2;
88 mid[2] = (p1[2] + p2[2])/2;