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 | // OPCIONES GLOBALES DE SIMPLIFICACIÓN
|
---|
10 |
|
---|
11 | int qslim::face_target = 0;
|
---|
12 | qslim::real qslim::error_tolerance = HUGE;
|
---|
13 |
|
---|
14 |
|
---|
15 | bool qslim::will_use_plane_constraint = true;
|
---|
16 | bool qslim::will_use_vertex_constraint = true;
|
---|
17 |
|
---|
18 | bool qslim::will_preserve_boundaries = true;
|
---|
19 | bool qslim::will_preserve_mesh_quality = true;
|
---|
20 | bool qslim::will_constrain_boundaries = true;
|
---|
21 | qslim::real qslim::boundary_constraint_weight = 1.0;
|
---|
22 |
|
---|
23 | bool qslim::will_weight_by_area = false;
|
---|
24 |
|
---|
25 | //int qslim::placement_policy = PLACE_OPTIMAL;
|
---|
26 | int qslim::placement_policy = PLACE_ENDPOINTS; // No cambia los vértices
|
---|
27 |
|
---|
28 | qslim::real qslim::pair_selection_tolerance = 0.0; |
---|
Note: See
TracBrowser
for help on using the repository browser.