MeshKit
1.0
|
00001 /* 00002 * AF2RuleNewFace.hpp 00003 * 00004 * A specification of a new element that would be created by applying some 00005 * 2-dimensional advancing front rule. 00006 */ 00007 #ifndef AF2RULENEWFACE_HPP 00008 #define AF2RULENEWFACE_HPP 00009 00010 class AF2RuleNewFace 00011 { 00012 public: 00013 00014 virtual ~AF2RuleNewFace() {} 00015 00022 virtual unsigned int getNumVertices() const = 0; 00023 00039 virtual unsigned int getVertexIndex(unsigned int vtxNum) const = 0; 00040 }; 00041 00042 #endif