| 
      
      
      From: <J.B...@ew...> - 2008-05-17 13:26:04
      
     | 
| Hi all, Should this code behave the same? Geom::Point startpoint(123.2, 456.8); Geom::Path p( startpoint ); and Geom::Point startpoint(123.2, 456.8); Geom::Path p; p.start( startpoint ); I ask because it does not behave the same in Inkscape. (if you want to test, checkout my branch and go to /src/display/curve.cpp method "moveto(NR::Point const &p)". See the cmdline output when you change to either one of the above. Geom::Path p( startpoint ) gives "M 0,0" as output. Geom::Path p; p.start( startpoint ); I think correctly gives "M 123.2, 456.8" as output. Thanks, Johan |