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

From FreeCAD Documentation
Revision as of 18:25, 13 September 2021 by Evgeniy (talk | contribs)

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

Системное название
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.