Salome HOME
Filling operation: create a face from a set of edges/wires
[modules/shaper.git] / src / BuildPlugin / filling_widget.xml
1 <!--
2 Copyright (C) 2017-20xx  CEA/DEN, EDF R&D
3
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
8
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with this library; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
18 See http:##www.salome-platform.org/ or
19 email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
20 -->
21
22 <source>
23   <multi_selector id="base_objects"
24                   label="Segments and wires:"
25                   tooltip="Select edges or wires."
26                   type_choice="edges wires"
27                   concealment="false">
28     <validator id="PartSet_DifferentObjects"/>
29   </multi_selector>
30   <optionalbox id="advanced_options" title="Advanced options">
31     <switch id="orientation" label="Orientation">
32       <case id="auto_correct" title="Auto-correct edges orientation"/>
33       <case id="curve_info" title="Use curve information"/>
34       <case id="edge_orient" title="Use edges orientation"/>
35     </switch>
36     <integervalue id="min_degree" label="Min deg" min="1" default="2">
37       <validator id="GeomValidators_LessOrEqual" parameters="max_degree"/>
38     </integervalue>
39     <integervalue id="max_degree" label="Max deg" min="1" default="5">
40       <validator id="GeomValidators_GreaterOrEqual" parameters="min_degree"/>
41     </integervalue>
42     <integervalue id="nb_iter" label="Nb iter" min="0" default="0"/>
43     <doublevalue id="tol_2d" label="Tol 2D" min="0" default="0.0001" step="0.0001"/>
44     <doublevalue id="tol_3d" label="Tol 3D" min="0" default="0.0001" step="0.0001"/>
45     <boolvalue id="approximation" label="Approximation"/>
46   </optionalbox>
47 </source>