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