Esempio n. 1
0
 void Curve3(double x1, double y1,                   // Q, q
             double x, double y, bool rel)
 {
     if (rel)
     {
         m_storage.RelToAbs(ref x1, ref y1);
         m_storage.RelToAbs(ref x, ref y);
     }
     m_storage.Curve3(x1, y1, x, y);
 }