]> Creatis software - cpMesh.git/blob - lib/cpm/Plugins/SimpleFillRegion.cxx
167c9e040e5d2e1dab0b07464a27af7a88df0b87
[cpMesh.git] / lib / cpm / Plugins / SimpleFillRegion.cxx
1 #include <cpm/Plugins/SimpleFillRegion.h>
2
3 // -------------------------------------------------------------------------
4 cpm::Plugins::SimpleFillRegion::
5 SimpleFillRegion( )
6   : Superclass( )
7 {
8   this->SetNumberOfInputs( 2 );
9
10   this->m_DefaultParameters[ "MinDelta" ] = TParameter( "double", "0" );
11   this->m_DefaultParameters[ "MaxDelta" ] = TParameter( "double", "0" );
12   this->m_DefaultParameters[ "Seed" ] = TParameter( "point", "0:0:0" );
13 }
14
15 // -------------------------------------------------------------------------
16 cpm::Plugins::SimpleFillRegion::
17 ~SimpleFillRegion( )
18 {
19 }
20
21 // -------------------------------------------------------------------------
22 std::string cpm::Plugins::SimpleFillRegion::
23 GetClassName( ) const
24 {
25   return( "cpm::Plugins::SimpleFillRegion" );
26 }
27
28 // -------------------------------------------------------------------------
29 std::string cpm::Plugins::SimpleFillRegion::
30 _GenerateData( )
31 {
32   std::cout << "Simple fill region" << std::endl;
33 }
34
35 // eof - $RCSfile$