2 <toolbox id="creation_method">
3 <box id="by_three_points"
4 title="By three points"
5 tooltip="Plane by three points."
6 icon="icons/Construction/plane_by_three_points_32x32.png">
7 <shape_selector id="point1"
10 icon="icons/Construction/point.png"
12 <validator id="ConstructionPlugin_ValidatorPlaneThreePoints" parameters="point2,point3"/>
14 <shape_selector id="point2"
16 tooltip="Second point."
17 icon="icons/Construction/point.png"
19 <validator id="ConstructionPlugin_ValidatorPlaneThreePoints" parameters="point1,point3"/>
21 <shape_selector id="point3"
23 tooltip="Third point."
24 icon="icons/Construction/point.png"
26 <validator id="ConstructionPlugin_ValidatorPlaneThreePoints" parameters="point1,point2"/>
29 <box id="by_line_and_point"
30 title="By line and point"
31 tooltip="Plane by line and point."
32 icon="icons/Construction/plane_by_line_and_point_32x32.png">
33 <shape_selector id="line"
35 tooltip="Select line."
36 icon="icons/Construction/edge.png"
38 geometrical_selection="true">
39 <validator id="GeomValidators_ShapeType" parameters="line"/>
40 <validator id="ConstructionPlugin_ValidatorPlaneLinePoint" parameters="point,perpendicular"/>
42 <shape_selector id="point"
44 tooltip="Select point."
45 icon="icons/Construction/point.png"
47 <validator id="ConstructionPlugin_ValidatorPlaneLinePoint" parameters="line,perpendicular"/>
49 <boolvalue id="perpendicular"
50 label="Perpendicular "
51 tooltip="Makes the plane perpendicular to the selected line."
54 <box id="by_other_plane"
55 title="By other plane"
56 tooltip="Plane by other plane with different options."
57 icon="icons/Construction/plane_by_other_plane_32x32.png">
58 <shape_selector id="plane"
60 tooltip="Select a planar face."
61 icon="icons/Construction/face.png"
63 geometrical_selection="true">
64 <validator id="GeomValidators_Face" parameters="plane"/>
66 <toolbox id="by_other_plane_option">
67 <box id="by_distance_from_other"
68 title="By distance from other"
69 tooltip="Plane by distance from other plane."
70 icon="icons/Construction/plane_by_distance_from_other_24x24.png">
71 <doublevalue id="distance"
73 tooltip="Distance from selected face to plane."
74 icon="icons/Construction/distance_value.png"
78 <boolvalue id="reverse"
80 tooltip="Checked means on the other side of the selected plane."
83 <box id="by_coincident_to_point"
84 title="By coincident to point"
85 tooltip="Plane by coincident to point."
86 icon="icons/Construction/plane_by_coincident_to_point_24x24.png">
87 <shape_selector id="coincident_point"
89 tooltip="Select point."
90 icon="icons/Construction/point.png"
96 tooltip="Plane by rotation around axis."
97 icon="icons/Construction/plane_by_rotation_24x24.png">
98 <shape_selector id="axis"
100 tooltip="Select line for axis."
101 icon="icons/Construction/axis.png"
103 geometrical_selection="true">
104 <validator id="GeomValidators_ShapeType" parameters="line"/>
106 <doublevalue id="angle"
108 tooltip="Angle for rotation around axis."
109 icon="icons/Construction/angle.png"
112 <validator id="GeomValidators_Positive"/>
117 <box id="by_two_parallel_planes"
118 title="By two parallel planes"
119 tooltip="Plane equidistant from 2 parallel planes."
120 icon="icons/Construction/plane_by_two_parallel_planes_32x32.png">
121 <shape_selector id="plane1"
123 tooltip="Select a planar face."
124 icon="icons/Construction/face.png"
126 geometrical_selection="true">
127 <validator id="GeomValidators_Face" parameters="plane"/>
128 <validator id="ConstructionPlugin_ValidatorPlaneTwoParallelPlanes" parameters="plane2"/>
130 <shape_selector id="plane2"
132 tooltip="Select a planar face."
133 icon="icons/Construction/face.png"
135 geometrical_selection="true">
136 <validator id="GeomValidators_Face" parameters="plane"/>
137 <validator id="ConstructionPlugin_ValidatorPlaneTwoParallelPlanes" parameters="plane1"/>