#include <util.h>
Definition at line 70 of file util.h.
Public Member Functions | |
ProgramOptions () | |
Public Attributes | |
std::string | file_in |
Input (OBJ or CON) file. | |
std::string | edge_file |
Input file with edges to cut. | |
std::string | vert_file |
Input file with list of cone singularities. | |
std::string | conn_file_out |
Output file (CON format). | |
std::string | obj_file_out |
Output file (OBJ format). | |
std::string | vt_file_out |
Output file (VT format). | |
bool | read_obj |
True if OBJ input file specified. | |
bool | read_conn |
True if CON input file specified. | |
bool | read_vert |
True if cone singularities are given. | |
bool | read_edges |
True if cut edges are specified. | |
bool | write_obj |
True if OBJ file needs to be written. | |
bool | write_vt |
True if VT file needs to be written. | |
bool | write_conn |
True if CON file needs to be written. | |
bool | do_optim |
True when no optimization needs to be performed. |
|
Definition at line 114 of file util.h. 00114 : file_in(""), edge_file(""), vert_file(""), 00115 conn_file_out(""), obj_file_out(""), vt_file_out(""), 00116 read_obj(false), read_conn(false), 00117 read_vert(false), read_edges(false), 00118 write_obj(false), write_conn(false), 00119 write_vt(false), do_optim(true) 00120 {}
|
|
Output file (CON format).
|
|
True when no optimization needs to be performed. Can be useful when piecewise flat surface need to be cut. |
|
Input file with edges to cut.
|
|
Input (OBJ or CON) file.
|
|
Output file (OBJ format).
|
|
True if CON input file specified.
|
|
True if cut edges are specified.
|
|
True if OBJ input file specified.
|
|
True if cone singularities are given.
|
|
Input file with list of cone singularities.
|
|
Output file (VT format).
|
|
True if CON file needs to be written.
|
|
True if OBJ file needs to be written.
|
|
True if VT file needs to be written.
|