/* * ShapeOps.hpp * * Created on: Jun 18, 2010 * Author: crueger */ #ifndef SHAPEOPS_HPP_ #define SHAPEOPS_HPP_ #include "Shapes/Shape.hpp" class Matrix; Shape resize(const Shape&,double); Shape translate(const Shape&, const Vector&); Shape stretch(const Shape&, const Vector&); Shape transform(const Shape&,const Matrix&); #endif /* SHAPEOPS_HPP_ */