Changes in src/Shapes/ShapeOps_impl.hpp [5e588b5:cfda65]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Shapes/ShapeOps_impl.hpp
r5e588b5 rcfda65 13 13 #include "Matrix.hpp" 14 14 15 class Resize_impl : public Shape_impl 15 class ShapeOpsBase_impl : public Shape_impl{ 16 public: 17 ShapeOpsBase_impl(const Shape::impl_ptr&); 18 virtual ~ShapeOpsBase_impl(); 19 virtual bool isInside(const Vector &point); 20 virtual bool isOnSurface(const Vector &point); 21 virtual Vector getNormal(const Vector &point) throw (NotOnSurfaceException); 22 protected: 23 virtual Vector translateIn(const Vector &point)=0; 24 virtual Vector translateOutPos(const Vector &point)=0; 25 virtual Vector translateOutNormal(const Vector &point)=0; 26 Shape::impl_ptr getArg(); 27 private: 28 Shape::impl_ptr arg; 29 }; 30 31 class Resize_impl : public ShapeOpsBase_impl 16 32 { 17 33 public: 18 34 Resize_impl(const Shape::impl_ptr&,double); 19 35 virtual ~Resize_impl(); 20 virtual bool isInside(const Vector& point); 36 protected: 37 virtual Vector translateIn(const Vector &point); 38 virtual Vector translateOutPos(const Vector &point); 39 virtual Vector translateOutNormal(const Vector &point); 40 virtual std::string toString(); 21 41 private: 22 Shape::impl_ptr arg;23 42 double size; 24 43 }; 25 44 26 class Translate_impl : public Shape _impl45 class Translate_impl : public ShapeOpsBase_impl 27 46 { 28 47 public: 29 48 Translate_impl(const Shape::impl_ptr&, const Vector&); 30 49 virtual ~Translate_impl(); 31 virtual bool isInside(const Vector& point); 50 protected: 51 virtual Vector translateIn(const Vector &point); 52 virtual Vector translateOutPos(const Vector &point); 53 virtual Vector translateOutNormal(const Vector &point); 54 virtual std::string toString(); 32 55 private: 33 Shape::impl_ptr arg;34 56 Vector offset; 35 57 }; 36 58 37 class Stretch_impl : public Shape _impl59 class Stretch_impl : public ShapeOpsBase_impl 38 60 { 39 61 public: 40 62 Stretch_impl(const Shape::impl_ptr&, const Vector&); 41 63 virtual ~Stretch_impl(); 42 virtual bool isInside(const Vector& point); 64 protected: 65 virtual Vector translateIn(const Vector &point); 66 virtual Vector translateOutPos(const Vector &point); 67 virtual Vector translateOutNormal(const Vector &point); 68 virtual std::string toString(); 43 69 private: 44 Shape::impl_ptr arg;45 70 Vector factors; 46 71 Vector reciFactors; 47 72 }; 48 73 49 class Transform_impl : public Shape _impl74 class Transform_impl : public ShapeOpsBase_impl 50 75 { 51 76 public: 52 77 Transform_impl(const Shape::impl_ptr&, const Matrix&); 53 78 virtual ~Transform_impl(); 54 virtual bool isInside(const Vector& point); 79 protected: 80 virtual Vector translateIn(const Vector &point); 81 virtual Vector translateOutPos(const Vector &point); 82 virtual Vector translateOutNormal(const Vector &point); 83 virtual std::string toString(); 55 84 private: 56 Shape::impl_ptr arg;57 85 Matrix transformation; 58 86 Matrix transformationInv;
Note:
See TracChangeset
for help on using the changeset viewer.