Salome HOME
2.3.3.2 Point creation by projection of another point on a plane
[modules/shaper.git] / src / ConstructionPlugin / point_widget.xml
1 <!--
2 Copyright (C) 2014-2017  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   <toolbox id="creation_method">
24     <box id="by_xyz"
25          title="By X, Y, Z"
26          tooltip="Point at a given distance from the origin."
27          icon="icons/Construction/point_by_xyz_32x32.png">
28       <doublevalue id="x"
29                    label="X "
30                    tooltip="X coordinate."
31                    icon="icons/Construction/x_size.png"
32                    default="0"/>
33       <doublevalue id="y"
34                    label="Y "
35                    tooltip="Y coordinate."
36                    icon="icons/Construction/y_size.png"
37                    default="0"/>
38       <doublevalue id="z"
39                    label="Z "
40                    tooltip="Z coordinate."
41                    icon="icons/Construction/z_size.png"
42                    default="0"/>
43     </box>
44     <box id="by_distance_on_edge"
45          title="By distance on edge"
46          tooltip="Point on an edge, at a given distance of one of its end."
47          icon="icons/Construction/point_by_distance_on_edge_32x32.png">
48       <shape_selector id="edge"
49                       label="Edge"
50                       tooltip="Edge for creating point on it."
51                       icon="icons/Construction/edge.png"
52                       shape_types="edge">
53         <validator id="GeomValidators_Finite"/>
54       </shape_selector>
55       <radiobox id="offset_type">
56         <radio id="offset_type_by_distance"
57              title="Distance on edge by value"
58              tooltip="Point on an edge, at a given distance specified by value."
59              icon="icons/Construction/point_by_distance_on_edge_24x24.png">
60           <doublevalue id="distance"
61              label="Distance"
62              tooltip="Distance value."
63              min="0.0"
64              default="10">
65           </doublevalue>
66         </radio>
67         <radio id="offset_type_by_ratio"
68              title="Distance on edge by ratio"
69              tooltip="Point on an edge, at a given distance specified by ratio."
70              icon="icons/Construction/point_by_ratio_on_edge_24x24.png">
71           <doublevalue id="ratio"
72              label="Ratio"
73              tooltip="Ratio value."
74              min="0.0"
75              max="1.0"
76              default="0.5">
77           </doublevalue>
78         </radio>
79       </radiobox>
80       <boolvalue id="reverse"
81            label="Reverse"
82            tooltip="Distance from edge end point."
83            default="false"/>
84     </box>
85     <box id="by_projection_on_face"
86          title="By projection on face"
87          tooltip="Point on face surface by projection selected point."
88          icon="icons/Construction/point_by_projection_on_face_32x32.png">
89       <shape_selector id="point_to_project_on_face"
90                       label="Point"
91                       tooltip="Point for projection."
92                       icon="icons/Construction/point.png"
93                       shape_types="vertex">
94       </shape_selector>
95       <shape_selector id="face_for_point_projection"
96                       label="face"
97                       tooltip="Face for projection."
98                       icon="icons/Construction/face.png"
99                       shape_types="face">
100         <validator id="GeomValidators_Face" parameters="plane"/>
101       </shape_selector>
102     </box>
103 <!--
104     <box id="by_lines_intersection"
105          title="By two lines intersection"
106          tooltip="Point by intersection of two coplanar lines."
107          icon="icons/Construction/point_by_lines_intersection_32x32.png">
108       <shape_selector id="first_line"
109                       label="First line"
110                       tooltip="First line."
111                       icon="icons/Construction/edge.png"
112                       shape_types="edge">
113         <validator id="GeomValidators_ShapeType" parameters="line"/>
114         <validator id="ConstructionPlugin_ValidatorPointLines" parameters="second_line"/>
115       </shape_selector>
116       <shape_selector id="second_line"
117                       label="Second line"
118                       tooltip="Second line."
119                       icon="icons/Construction/edge.png"
120                       shape_types="edge">
121         <validator id="GeomValidators_ShapeType" parameters="line"/>
122         <validator id="ConstructionPlugin_ValidatorPointLines" parameters="first_line"/>
123       </shape_selector>
124     </box>
125 -->
126     <box id="by_line_and_plane_intersection"
127          title="By line and plane intersection"
128          tooltip="Point by intersection of line and plane."
129          icon="icons/Construction/point_by_line_and_plane_intersection_32x32.png">
130       <shape_selector id="intersection_line"
131                       label="Line"
132                       tooltip="Line for intersection."
133                       icon="icons/Construction/edge.png"
134                       shape_types="edge">
135         <validator id="ConstructionPlugin_ValidatorPointEdgeAndPlaneNotParallel" parameters="intersection_plane"/>
136       </shape_selector>
137       <shape_selector id="intersection_plane"
138                       label="Plane"
139                       tooltip="Plane for intersection."
140                       icon="icons/Construction/face.png"
141                       shape_types="face">
142         <validator id="GeomValidators_Face" parameters="plane"/>
143         <validator id="ConstructionPlugin_ValidatorPointEdgeAndPlaneNotParallel" parameters="intersection_line"/>
144       </shape_selector>
145       <optionalbox id="use_offset" title="Offset from the plane">
146         <doublevalue id="offset" label="Distance " tooltip="Distance from the plane" min="0" default="0"/>
147         <boolvalue id="reverse_offset" label="Reverse" tooltip="Reverse offset value" default="false"/>
148       </optionalbox>
149     </box>
150
151   </toolbox>
152 </source>