Sketcher ConstrainSymmetric/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 23: Line 23:
</div>
</div>


<span id="Description"></span>
==Описание==
==Описание==


<div class="mw-translate-fuzzy">
'''Ограничение симметричности''' требует от двух выделенных точек быть симметричными относительно данной линии, то есть от обеих точек требуется лежать на нормали к линии через обе точки на одинаковом расстоянии от линии. Альтернативно, она может наложить ограничение на две точки быть симметричными относительно третьей.
'''Ограничение симметричности''' требует от двух выделенных точек быть симметричными относительно данной линии, то есть от обеих точек требуется лежать на нормали к линии через обе точки на одинаковом расстоянии от линии. Альтернативно, она может наложить ограничение на две точки быть симметричными относительно третьей.
</div>


<span id="Usage"></span>
==Применение==
==Применение==


See also: [[Sketcher_Workbench#Drawing_aids|Drawing aids]].
[[File:SymmetricConstraint1.png|500px]]

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

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

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


===[[Sketcher_Workbench#Continue_modes|Continue mode]]===
Это назначит ограничения для выделенных элементов.


# Make sure there is no selection.
[[File:SymmetricConstraint3.png|500px]]
# There are several ways to invoke the tool:
#* Press the {{Button|[[Image:Sketcher_ConstrainSymmetric.svg|16px]] [[Sketcher_ConstrainSymmetric|Constrain symmetric]]}} button.
#* Select the {{MenuCommand|Sketch → Sketcher constraints → [[Image:Sketcher_ConstrainSymmetric.svg|16px]] Constrain symmetric}} option from the menu.
#* {{Version|1.0}}: Right-click in the [[3D_view|3D view]] and select the {{MenuCommand|Constrain → [[Image:Sketcher_ConstrainSymmetric.svg|16px]] Constrain symmetric}} option from the context menu.
#* Use the keyboard shortcut: {{KEY|S}}.
# The cursor changes to a cross with the tool icon.
# Do one of the following:
#* Select two points and a symmetry point (in that order).
#* Select two points and a symmetry line (idem).
#* Select a point, a symmetry line and another point (idem).
#* Select a line and a symmetry point (idem).
# A constraint is added.
# Optionally keep creating constraints.
# To finish, right-click or press {{KEY|Esc}}, or start another geometry or constraint creation tool.


===Run-once mode===
{{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.


# Do one of the following:
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].
#* Select two points and a symmetry point (in that order).
#* Select two points and a symmetry line (in any order).
#* Select a line and a symmetry point (idem).
# Invoke the tool as explained above, or with the following additional option:
#* {{Version|1.0}}: Right-click in the [[3D_view|3D view]] and select the {{MenuCommand|[[Image:Sketcher_ConstrainSymmetric.svg|16px]] Constrain symmetric}} option from the context menu.
# A constraint is added.


<span id="Scripting"></span>
==Программирование==
==Программирование==



Revision as of 15:03, 23 April 2024

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

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

Описание

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

Применение

See also: Drawing aids.

Continue mode

  1. Make sure there is no selection.
  2. There are several ways to invoke the tool:
    • Press the Constrain symmetric button.
    • Select the Sketch → Sketcher constraints → Constrain symmetric option from the menu.
    • introduced in version 1.0: Right-click in the 3D view and select the Constrain → Constrain symmetric option from the context menu.
    • Use the keyboard shortcut: S.
  3. The cursor changes to a cross with the tool icon.
  4. Do one of the following:
    • Select two points and a symmetry point (in that order).
    • Select two points and a symmetry line (idem).
    • Select a point, a symmetry line and another point (idem).
    • Select a line and a symmetry point (idem).
  5. A constraint is added.
  6. Optionally keep creating constraints.
  7. To finish, right-click or press Esc, or start another geometry or constraint creation tool.

Run-once mode

  1. Do one of the following:
    • Select two points and a symmetry point (in that order).
    • Select two points and a symmetry line (in any order).
    • Select a line and a symmetry point (idem).
  2. Invoke the tool as explained above, or with the following additional option:
  3. A constraint is added.

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

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.