// Cutmesh - Copyright (C) 2010-2018 T. Mouton, E. Bechet 
//
// See the LICENSE file for license information and contributions.
// bugs and problems to <thibaud.mouton@gmail.com>.

#include "mesh_cutter.h"

int main ( int argc, char **argv )
{
  options *opts = new options;
  opts->parse ( argc, argv );
  MeshCutter * mc = new MeshCutter ( opts );
  mc->process();

//  how to use the physical interface :
//     std::vector<int> phys[4];
//     mc->physical_query("0 ZERO 32 POS inter", phys);
}
