Exemplo n.º 1
0
 public Curve4Div(Curve4Points cp)
 {
     m_approximation_scale = (1.0);
     m_angle_tolerance     = (0.0);
     m_count = (0);
     init(cp[0], cp[1], cp[2], cp[3], cp[4], cp[5], cp[6], cp[7]);
 }
Exemplo n.º 2
0
 public Curve4Inc(Curve4Points cp)
 {
     m_num_steps = (0);
     m_step      = (0);
     m_scale     = (1.0);
     init(cp[0], cp[1], cp[2], cp[3], cp[4], cp[5], cp[6], cp[7]);
 }
Exemplo n.º 3
0
 public void init(Curve4Points cp)
 {
     init(cp[0], cp[1], cp[2], cp[3], cp[4], cp[5], cp[6], cp[7]);
 }
Exemplo n.º 4
0
 public Curve4Div(Curve4Points cp)
 {
     m_approximation_scale=(1.0);
     m_angle_tolerance=(0.0);
     m_count=(0);
     init(cp[0], cp[1], cp[2], cp[3], cp[4], cp[5], cp[6], cp[7]);
 }
Exemplo n.º 5
0
 public Curve4(Curve4Points cp)
 {
     m_approximation_method = Curves.ECurveApproximationMethod.Div;
     Init(cp[0], cp[1], cp[2], cp[3], cp[4], cp[5], cp[6], cp[7]);
 }
Exemplo n.º 6
0
 //-----------------------------------------------------------------------
 public static Curve4Points ubspline_to_bezier(Curve4Points cp)
 {
     return ubspline_to_bezier(cp[0], cp[1], cp[2], cp[3],
                               cp[4], cp[5], cp[6], cp[7]);
 }
Exemplo n.º 7
0
 //-----------------------------------------------------------------------
 public static Curve4Points hermite_to_bezier(Curve4Points cp)
 {
     return hermite_to_bezier(cp[0], cp[1], cp[2], cp[3],
                              cp[4], cp[5], cp[6], cp[7]);
 }
Exemplo n.º 8
0
 //-----------------------------------------------------------------------
 public static Curve4Points catrom_to_bezier(Curve4Points cp)
 {
     return catrom_to_bezier(cp[0], cp[1], cp[2], cp[3],
                             cp[4], cp[5], cp[6], cp[7]);
 }
Exemplo n.º 9
0
 public Curve4Inc(Curve4Points cp)
 {
     m_num_steps=(0);
     m_step=(0);
     m_scale=(1.0);
     init(cp[0], cp[1], cp[2], cp[3], cp[4], cp[5], cp[6], cp[7]);
 }
Exemplo n.º 10
0
 ubspline_to_bezier(Curve4Points cp)
 {
     return(ubspline_to_bezier(cp[0], cp[1], cp[2], cp[3],
                               cp[4], cp[5], cp[6], cp[7]));
 }
Exemplo n.º 11
0
 public void init(Curve4Points cp)
 {
     init(cp[0], cp[1], cp[2], cp[3], cp[4], cp[5], cp[6], cp[7]);
 }
Exemplo n.º 12
0
 catrom_to_bezier(Curve4Points cp)
 {
     return(catrom_to_bezier(cp[0], cp[1], cp[2], cp[3],
                             cp[4], cp[5], cp[6], cp[7]));
 }
Exemplo n.º 13
0
 public Curve4(Curve4Points cp)
 {
     m_approximation_method = Curves.ECurveApproximationMethod.Div;
     Init(cp[0], cp[1], cp[2], cp[3], cp[4], cp[5], cp[6], cp[7]);
 }
Exemplo n.º 14
0
 hermite_to_bezier(Curve4Points cp)
 {
     return(hermite_to_bezier(cp[0], cp[1], cp[2], cp[3],
                              cp[4], cp[5], cp[6], cp[7]));
 }