Replace the flip word with mirror. #3060

This commit is contained in:
Alessandro Ranellucci 2015-11-04 23:11:30 +01:00
parent f8d2c69713
commit 61f0a9e4da
8 changed files with 31 additions and 31 deletions

View file

@ -36,10 +36,10 @@ class TriangleMesh
void rotate_x(float angle);
void rotate_y(float angle);
void rotate_z(float angle);
void flip(const Axis &axis);
void flip_x();
void flip_y();
void flip_z();
void mirror(const Axis &axis);
void mirror_x();
void mirror_y();
void mirror_z();
void align_to_origin();
void rotate(double angle, Point* center);
TriangleMeshPtrs split() const;