Revision 1526,
699 bytes
checked in by gumbau, 18 years ago
(diff) |
Updated modules to the new interface and the new simplification algorithm improvements.
|
Line | |
---|
1 | #include <stdlib.h>
|
---|
2 | //#include <iostream.h>
|
---|
3 |
|
---|
4 | #include <gfx/std.h>
|
---|
5 | #include "avars.h"
|
---|
6 | #include "AdjModel.h"
|
---|
7 |
|
---|
8 |
|
---|
9 | // GLOBAL SIMPLIFICATION OPTIONS
|
---|
10 |
|
---|
11 | int simplif::face_target = 0;
|
---|
12 | simplif::real simplif::error_tolerance = HUGE;
|
---|
13 |
|
---|
14 |
|
---|
15 | bool simplif::will_use_plane_constraint = true;
|
---|
16 | bool simplif::will_use_vertex_constraint = true;
|
---|
17 |
|
---|
18 | bool simplif::will_preserve_boundaries = true;
|
---|
19 | bool simplif::will_preserve_mesh_quality = true;
|
---|
20 | bool simplif::will_constrain_boundaries = true;
|
---|
21 | simplif::real simplif::boundary_constraint_weight = 10.0;
|
---|
22 |
|
---|
23 | bool simplif::will_weight_by_area = false;
|
---|
24 |
|
---|
25 | int simplif::placement_policy = PLACE_ENDPOINTS;
|
---|
26 |
|
---|
27 | simplif::real simplif::pair_selection_tolerance = 0.0;
|
---|
Note: See
TracBrowser
for help on using the repository browser.