89 "doc": "Remove the outside region based on different criteria. 'flood': flood fill. 'input': winding number w.r.t. the input. 'tracked': winding number w.r.t. the tracked surface. 'none': Do not filter. Flood fill only works if the input is closed. Otherwise, it results in an empty mesh. Filtering w.r.t. the input might cause wrinkles along the surface as some tets might be falsely tagged. Filtering w.r.t. the tracked surface can lead to missing pieces if the input consists of multiple components."
90 },
91 {
92 "pointer": "/eps_rel",
93 "type": "float",
94 "default": 2e-3,
95 "doc": "Envelope thickness relative to the bounding box"
96 },
97 {
98 "pointer": "/length_rel",
99 "type": "float",
100 "default": 5e-2,
101 "doc": "Target edge length relative to the bounding box"
102 },
103 {
104 "pointer": "/stop_energy",
105 "type": "float",
106 "default": 10,
107 "doc": "Target energy. If all tets have an energy below this, tetwild will stop."
108 },
109 {
110 "pointer": "/preserve_topology",
111 "type": "bool",
112 "default": false,
113 "doc": "Preserve the topology of the input surface."
114 },
115 {
116 "pointer": "/throw_on_fail",
117 "type": "bool",
118 "default": false,
119 "doc": "Throw exception if the output does not fulfil the desired criteria. No output will be generated."
120 },
121 {
122 "pointer": "/log_file",
123 "type": "string",
124 "default": "",
125 "doc": "Logs are not just printed on the terminal but also saved in this file."
126 },
127 {
128 "pointer": "/report",
129 "type": "string",
130 "default": "",
131 "doc": "A JSON file that stores information about the result and the method execution, e.g., runtime."
132 },
133 {
134 "pointer": "/DEBUG_output",
135 "type": "bool",
136 "default": false,
137 "doc": "Write the mesh as debug_{}.vtu after every operation."
138 },
139 {
140 "pointer": "/DEBUG_sanity_checks",
141 "type": "bool",
142 "default": false,
143 "doc": "Perform sanity checks after every operation. This can be very slow and should only be used for debugging."
144 },
145 {
146 "pointer": "/DEBUG_hausdorff",
147 "type": "bool",
148 "default": false,
149 "doc": "Sanity Check: Compute and report the Hausdorff distance of the output to the input. Should be always smaller than eps."