Sketcher ConstrainSymmetric/ru: Difference between revisions

From FreeCAD Documentation
No edit summary
(Updating to match new version of source page)
 
(36 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{Docnav|[[Sketcher_ConstrainEqual|Equal Length]]|[[Sketcher_ConstrainBlock|Constrain Block]]|[[Sketcher_Workbench|Sketcher]]|IconL=Constraint_EqualLength.png|IconC=Workbench_Sketcher.svg|IconR=Sketcher_ConstrainBlock.png}}


<div class="mw-translate-fuzzy">
{{Docnav/ru
|[[Sketcher_ConstrainEqual/ru|Ограничение эквивалентностью]]
|[[Sketcher_ConstrainBlock/ru|Ограничение перемещения]]
|[[Sketcher_Workbench/ru|Верстак "Sketcher"]]
|IconL=Sketcher_ConstrainEqual.svg
|IconR=Sketcher_ConstrainBlock.svg
|IconC=Workbench_Sketcher.svg
}}
</div>

<div class="mw-translate-fuzzy">
{{GuiCommand/ru
{{GuiCommand/ru
|Name/ru=Ограничение симметричности
|Name=Sketcher ConstrainSymmetric
|Name=Sketcher_ConstrainSymmetric
|Workbenches=[[Sketcher Workbench/ru|Sketcher]]
|MenuLocation=Sketch → Ограничения эскиза → Ограничение симметричности
|MenuLocation=Sketch → Ограничения эскиза → Ограничение симметричности
|Workbenches=[[Sketcher_Workbench/ru|Sketcher]]
|Shortcut=S
|Shortcut=S
|SeeAlso=[[Sketcher ConstrainParallel/ru|Ограничение параллельности]]
|SeeAlso=[[Sketcher_ConstrainParallel/ru|Ограничение параллельности]]
}}
}}
</div>


==Описание==
==Описание==
Ограничение симметричности требует от двух выделенных точек быть симметричными относительно данной линии, то есть от обеих точек требуется лежать на нормали к линии через обе точки на одинаковом расстоянии от линии. Альтернативно, она может наложить ограничение на две точки быть симметричными относительно третьей.


'''Ограничение симметричности''' требует от двух выделенных точек быть симметричными относительно данной линии, то есть от обеих точек требуется лежать на нормали к линии через обе точки на одинаковом расстоянии от линии. Альтернативно, она может наложить ограничение на две точки быть симметричными относительно третьей.
==Operation==
[[File:SymmetricConstraint1.png|256px]]<br /><br />
Select two points (vertexes) in the sketch and a line in the sketch. The selected points and the line will be dark green.<br /><br />
[[File:SymmetricConstraint2.png|256px]]<br /><br />
Click on the SymmetricalConstraint icon [[File:Constraint_Symmetric.png|16px]] in the Sketcher toolbar or select the Constrain Symmetrical menu item from the Sketcher Constraints sub menu of the Sketcher (or Part Design) menu item.
This will apply the constraint to the selected items.<br /><br />
[[File:SymmetricConstraint3.png|256px]]<br /><br />
This is a geometric constraint and has no editable parameters.


==Применение==
{{Docnav|[[Sketcher_ConstrainEqual|Equal Length]]|[[Sketcher_ConstrainBlock|Constrain Block]]|[[Sketcher_Workbench|Sketcher]]|IconL=Constraint_EqualLength.png|IconC=Workbench_Sketcher.svg|IconR=Sketcher_ConstrainBlock.png}}


[[File:SymmetricConstraint1.png|500px]]
{{Sketcher Tools navi}}

Выделите в эскизе две точки (вершины) и линию. Выделенные точки и линия станут тёмно-зелёными.

[[File:SymmetricConstraint2.png|500px]]

<div class="mw-translate-fuzzy">
Кликните на иконке SymmetricalConstraint [[File:Constraint_Symmetric.png|16px]] на панели инструментов Sketcher или выделите меню Constrain Symmetrical в субменю Sketcher Constraints в разделе меню Sketcher (или Part Design).
</div>

Это назначит ограничения для выделенных элементов.

[[File:SymmetricConstraint3.png|500px]]

{{Emphasis|Note:}} Before Version 0.19 (see fix [https://github.com/FreeCAD/FreeCAD/pull/3746]), if you want to define a symmetry constraint with respect to a point, the order of the selection is important, depending on if you select the tool at the beginning or at the end.
* If you click the tool first: select the first point, then the symmetry reference point, and finally the second point.
* If you click the tool last: select the first point, then the second point, and finally the symmetry reference point.

See the tracker [https://freecadweb.org/tracker/view.php?id=4144 issue #4144], and [https://forum.freecadweb.org/viewtopic.php?f=3&t=39611 forum thread].

==Программирование==

Two points and a symmetry line:

{{Code|code=Sketch.addConstraint(Sketcher.Constraint('Symmetric', Line1, PointOfLine1, Line2, PointOfLine2, SymmetryLine))}}

Two points and a symmetry point:

{{Code|code=Sketch.addConstraint(Sketcher.Constraint('Symmetric', Line1, PointOfLine1, Line2, PointOfLine2, LineS, PointOfLineS))}}

A line and a symmetry point (In the GUI one can select a line and a point, but it uses internally the same form as above, with the two extremities of the same line):

{{Code|code=Sketch.addConstraint(Sketcher.Constraint('Symmetric', Line, 1, Line, 2, LineS, PointOfLineS))}}

The [[Sketcher_scripting|Sketcher scripting]] page explains the values which can be used for {{incode|Line1}}, {{incode|Line2}}, {{incode|LineS}}, {{incode|Line}}, {{incode|PointOfLine1}}, {{incode|PointOfLine2}} and {{incode|PointOfLineS}}, and contains further examples on how to create constraints from Python scripts.


<div class="mw-translate-fuzzy">
{{Docnav/ru
|[[Sketcher_ConstrainEqual/ru|Ограничение эквивалентностью]]
|[[Sketcher_ConstrainBlock/ru|Ограничение перемещения]]
|[[Sketcher_Workbench/ru|Верстак "Sketcher"]]
|IconL=Sketcher_ConstrainEqual.svg
|IconR=Sketcher_ConstrainBlock.svg
|IconC=Workbench_Sketcher.svg
}}
</div>


{{Sketcher_Tools_navi{{#translation:}}}}
{{Userdocnavi}}
{{Userdocnavi{{#translation:}}}}

Latest revision as of 20:25, 20 March 2022

Ограничение симметричности

Системное название
Sketcher_ConstrainSymmetric
Расположение в меню
Sketch → Ограничения эскиза → Ограничение симметричности
Верстаки
Sketcher
Быстрые клавиши
S
Представлено в версии
-
См. также
Ограничение параллельности

Описание

Ограничение симметричности требует от двух выделенных точек быть симметричными относительно данной линии, то есть от обеих точек требуется лежать на нормали к линии через обе точки на одинаковом расстоянии от линии. Альтернативно, она может наложить ограничение на две точки быть симметричными относительно третьей.

Применение

Выделите в эскизе две точки (вершины) и линию. Выделенные точки и линия станут тёмно-зелёными.

Кликните на иконке SymmetricalConstraint на панели инструментов Sketcher или выделите меню Constrain Symmetrical в субменю Sketcher Constraints в разделе меню Sketcher (или Part Design).

Это назначит ограничения для выделенных элементов.

Note: Before Version 0.19 (see fix [1]), if you want to define a symmetry constraint with respect to a point, the order of the selection is important, depending on if you select the tool at the beginning or at the end.

  • If you click the tool first: select the first point, then the symmetry reference point, and finally the second point.
  • If you click the tool last: select the first point, then the second point, and finally the symmetry reference point.

See the tracker issue #4144, and forum thread.

Программирование

Two points and a symmetry line:

Sketch.addConstraint(Sketcher.Constraint('Symmetric', Line1, PointOfLine1, Line2, PointOfLine2, SymmetryLine))

Two points and a symmetry point:

Sketch.addConstraint(Sketcher.Constraint('Symmetric', Line1, PointOfLine1, Line2, PointOfLine2, LineS, PointOfLineS))

A line and a symmetry point (In the GUI one can select a line and a point, but it uses internally the same form as above, with the two extremities of the same line):

Sketch.addConstraint(Sketcher.Constraint('Symmetric', Line, 1, Line, 2, LineS, PointOfLineS))

The Sketcher scripting page explains the values which can be used for Line1, Line2, LineS, Line, PointOfLine1, PointOfLine2 and PointOfLineS, and contains further examples on how to create constraints from Python scripts.