mirror of https://github.com/CGAL/cgal
41 lines
1001 B
C++
41 lines
1001 B
C++
#include <CGAL/leda_integer.h>
|
|
#include <CGAL/Homogeneous.h>
|
|
#include <CGAL/Nef_polyhedron_3.h>
|
|
#include <CGAL/IO/Nef_polyhedron_iostream_3.h>
|
|
#include "tetrahedron_generator.h"
|
|
#include "sat_writer.h"
|
|
|
|
typedef leda_integer RT;
|
|
typedef CGAL::Homogeneous<RT> Kernel;
|
|
typedef CGAL::Nef_polyhedron_3<Kernel> Nef_polyhedron_3;
|
|
typedef CGAL::sat_writer<Nef_polyhedron_3> Sat_writer;
|
|
typedef tetrahedron_generator<Kernel> tgen;
|
|
|
|
bool cgal_nef3_timer_on = false;
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
assert(argc < 7);
|
|
|
|
int nx = argc>1 ? std::atoi(argv[1]) : 2;
|
|
int ny = argc>2 ? std::atoi(argv[2]) : 2;
|
|
int nz = argc>3 ? std::atoi(argv[3]) : 2;
|
|
int s = argc>4 ? std::atoi(argv[4]) : 100;
|
|
|
|
std::ostringstream out;
|
|
if(argc>5) {
|
|
tgen t(out,s,std::atoi(argv[5]));
|
|
t.create_tetrahedra(nx,ny,nz);
|
|
} else {
|
|
tgen t(out,s);
|
|
t.create_tetrahedra(nx,ny,nz);
|
|
}
|
|
|
|
std::istringstream in(out.str());
|
|
Nef_polyhedron_3 N;
|
|
in >> N;
|
|
|
|
Sat_writer SW(std::cout,N);
|
|
SW.print();
|
|
}
|