ExPolygon::XS->rotate()

This commit is contained in:
Alessandro Ranellucci 2013-07-11 18:55:51 +02:00
parent 1506907212
commit 87a5de193d
7 changed files with 86 additions and 19 deletions

View file

@ -9,6 +9,8 @@
%name{_clone} ExPolygon(ExPolygon& self);
~ExPolygon();
void scale(double factor);
void translate(double x, double y);
void _rotate(double angle, Point* center);
%{
ExPolygon*

View file

@ -2,3 +2,4 @@
%typemap{std::vector<unsigned int>*};
%typemap{SV*};
%typemap{AV*};
%typemap{Point*};