#include int main( int argc, char* argv[] ) { // Useful types typedef cpPlugins::Interface::Plugins _TPlugins; // Load an interface to the plugins system _TPlugins::Pointer plugins = _TPlugins::New( ); try { // Guess reachable plugins plugins->GuessPlugins( ); // Create cylinder source auto source = plugins->CreateFilter( "MeshSources", "CylinderSource" ); source->GetParameters( )->SetReal( "Height", 10 ); source->GetParameters( )->SetReal( "Radius", 2 ); source->GetParameters( )->SetUint( "Resolution", 80 ); // Create mesh writer auto writer = plugins->CreateFilter( "IO", "MeshWriter" ); writer->SetInput( "Input", source->GetOutput( "Output" ) ); writer->GetParameters( )->SetSaveFileName( "FileName", "cylinder.vtk" ); // Update pipeline writer->Update( ); } catch( std::exception& err ) { std::cerr << "Error: " << err.what( ) << std::endl; return( 1 ); } // yrt return( 0 ); } // eof - $RCSfile$