MeshKit
1.0
|
00001 /* 00002 * AF2PointTransformNone.hpp 00003 * 00004 * \brief A point transformation that does no actual transformation 00005 * to the point. 00006 * 00007 * A copy of the point passed in is returned without modification; the 00008 * transformation does not make use of or depend on the vertex binding. 00009 */ 00010 00011 #ifndef AF2POINTTRANSFORMNONE_HPP 00012 #define AF2POINTTRANSFORMNONE_HPP 00013 00014 // MeshKit 00015 #include "meshkit/AF2PointTransform.hpp" 00016 00017 class AF2PointTransformNone : public AF2PointTransform 00018 { 00019 public: 00020 00035 virtual AF2Point2D transformPoint(AF2Point2D const & point, 00036 AF2Binding const & vBinding) const; 00037 00045 virtual AF2PointTransformNone* clone() const; 00046 }; 00047 00048 #endif