Branch data Line data Source code
1 : : /*
2 : : * QslimOptions.cpp
3 : : *
4 : : * Created on: Mar 10, 2010
5 : : * Author: iulian
6 : : */
7 : :
8 : : #include "meshkit/QslimOptions.hpp"
9 : : // for std::
10 : : #include <limits>
11 : :
12 : 492 : QslimOptions::QslimOptions() {
13 : : // TODO Auto-generated constructor stub
14 : : // default options:
15 : 492 : error_tolerance=0;
16 : 492 : face_target = 0;
17 : 492 : error_tolerance = std::numeric_limits<double>::max();
18 : 492 : will_use_plane_constraint = true;
19 : 492 : will_use_vertex_constraint = false;
20 : :
21 : 492 : will_preserve_boundaries = false;
22 : 492 : will_preserve_mesh_quality = false;
23 : 492 : will_constrain_boundaries = false;
24 : 492 : boundary_constraint_weight = 1.0;
25 : :
26 : 492 : will_weight_by_area = false;
27 : 492 : height_fields = false;
28 : 492 : timingIntervals = 10;
29 : :
30 : 492 : useDelayedDeletion = true;
31 : :
32 : 492 : placement_policy = PLACE_OPTIMAL;
33 : :
34 : 492 : pair_selection_tolerance = 0.0;
35 : 492 : logfile = 0;
36 : 492 : selected_output = 0;
37 : 492 : plotCost = 0;
38 : 492 : create_range = false;
39 : 492 : topology = 0;
40 : :
41 : 492 : }
42 : :
43 : 960 : QslimOptions::~QslimOptions() {
44 : : // TODO Auto-generated destructor stub
45 [ - + ]: 480 : }
|