<file>icons/angle_up.png</file>
<file>icons/angle_direct.png</file>
<file>icons/angle_down.png</file>
- <file>icons/angle_supplementary.png</file>
+ <file>icons/angle_complementary.png</file>
<file>icons/arc.png</file>
<file>icons/arc_base_32x32.png</file>
<file>icons/arc_3pt_32x32.png</file>
switch (anAngleType) {
case SketcherPrs_Tools::ANGLE_DIRECT:
break;
- case SketcherPrs_Tools::ANGLE_SUPPLEMENTARY:
+ case SketcherPrs_Tools::ANGLE_COMPLEMENTARY:
anAngle = 180 - anAngle;
break;
case SketcherPrs_Tools::ANGLE_BACKWARD:
buttons_dir="horizontal"
label="Angle type"
tooltip="Type of angle"
- string_list="Direct Supplementary Backward"
- icons_list=":icons/angle_direct.png :icons/angle_supplementary.png :icons/angle_backward.png"
+ string_list="Direct Complementary Additional"
+ icons_list=":icons/angle_direct.png :icons/angle_complementary.png :icons/angle_backward.png"
default="0"
/>
SetMeasuredGeometry(aEdge1, aEdge2);
}
break;
- case SketcherPrs_Tools::ANGLE_SUPPLEMENTARY: {
+ case SketcherPrs_Tools::ANGLE_COMPLEMENTARY: {
// to calculate center, first and end points
SetGeometryOrientedAngle(false, false);
SetMeasuredGeometry(aEdge1, aEdge2);
/// Type of angle
enum AngleType{
ANGLE_DIRECT, ///< Angle from the first line to the second line
- ANGLE_SUPPLEMENTARY, ///< Additional angle to the angle from first to second line
+ ANGLE_COMPLEMENTARY, ///< Additional angle to the angle from first to second line
ANGLE_BACKWARD ///< Angle from the second line to the first line
};