~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/svg/svg.h

  • Committer: Ted Gould
  • Date: 2008-11-21 05:24:08 UTC
  • Revision ID: ted@canonical.com-20081121052408-tilucis2pjrrpzxx
MergeĀ fromĀ fe-moved

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
std::string sp_svg_length_write_with_units(SVGLength const &length);
56
56
 
57
57
bool sp_svg_transform_read(gchar const *str, Geom::Matrix *transform);
58
 
bool sp_svg_transform_read(gchar const *str, NR::Matrix *transform);
59
58
 
60
59
gchar *sp_svg_transform_write(Geom::Matrix const &transform);
61
60
gchar *sp_svg_transform_write(Geom::Matrix const *transform);
62
 
gchar *sp_svg_transform_write(NR::Matrix const &transform);
63
 
gchar *sp_svg_transform_write(NR::Matrix const *transform);
64
61
 
65
62
double sp_svg_read_percentage (const char * str, double def);
66
63