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