Beispiel #1
0
 void Curve4(double x2, double y2,                   // S, s
             double x, double y, bool rel)
 {
     //throw new SVGException("Curve4(x2, y2, x, y) : NOT IMPLEMENTED YET");
     if (rel)
     {
         m_storage.Curve4Rel(x2, y2, x, y);
     }
     else
     {
         m_storage.Curve4(x2, y2, x, y);
     }
 }