#include "euler.h"
#include "print.h"
#include <fstream>
Go to the source code of this file.
Functions | |
| int | main () |
Definition in file test-cylinder.cc.
|
|
Definition at line 28 of file test-cylinder.cc. References euler::solid_t::f, euler::solid_t::print_off_file(), and euler::solid_t::tsweep_face(). 00029 { 00030 solid_t *s = solid_t::disk( point_t(), .5); 00031 s->tsweep_face(s->f); 00032 cout << s << endl << endl; 00033 ofstream os("test-cylinder.off", ios::out); 00034 00035 s->print_off_file(os); 00036 00037 return 0; 00038 }
|
1.4.6