Path: blob/devel/meshgen2d/src/include/SSMFVoronoiSegment.h
3203 views
#if !defined( MESH_SSMFVORONOISEGMENT_H )1#define MESH_SSMFVORONOISEGMENT_H23#include "SSVoronoiSegment.h"4#include "PQ.h"56#include "BGMesh.h"7#include "SSMFVertex.h"89class SSMFVoronoiSegment : public SSVoronoiSegment10{11public:12SSMFVoronoiSegment( const int t ) : SSVoronoiSegment(t) { }13SSMFVoronoiSegment( const int t, BGMesh *bgMesh ) :14SSVoronoiSegment(t, bgMesh) { }1516void discretize( NodeMap& fixedNodes, NodeMap& allNodes, std::list< Element* >& allElements );1718protected:19void makeSeed(NodeMap& fixedNodes);20virtual void getVertices( std::vector< Vertex * >& v, const int count );21void generate();22};23#endif /* MESH_SSMFVORONOISEGMENT_H */242526