Sketcher SymmetrieFestlegen

From FreeCAD Documentation
This page is a translated version of the page Sketcher ConstrainSymmetric and the translation is 59% complete.
Outdated translations are marked like this.

Sketcher SymmetrieFestlegen

Menüeintrag
Sketch → Skizzen-Beschränkungen → Symmetrie festlegen
Arbeitsbereich
Sketcher
Standardtastenkürzel
S
Eingeführt in Version
-
Siehe auch
Sketcher ParallelFestlegen

Beschreibung

Die symmetrische Beschränkung zwingt zwei ausgewählte Punkte dazu, symmetrisch um eine gegebene Linie herum zu sein, d.h. beide ausgewählten Punkte müssen auf einer Normalen zu der durch beide Punkte verlaufenden Linie liegen und müssen gleich weit von der Linie entfernt sein. Alternativ können zwei Punkte so eingeschränkt werden, dass sie in Bezug auf einen dritten Punkt symmetrisch sind.

Anwendung

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.

Skripten

Zwei Punkte und eine Symmetrielinie:

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

Zwei Punkte und ein Symmetriepunkt:

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

Eine Linie und ein Symmetriepunkt (In der GUI kann man eine Linie und einen Punkt auswählen, aber es wird intern die gleiche Form wie oben verwendet, mit den beiden Endpunkten der gleichen Linie):

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

Die Skizzierer Skripten Seite erklärt die Werte, die für Linie1, Linie2, LinieS, Linie, PunktVonLinie1, PunktVonLinie2 und PunktVonLinieS verwendet werden können, und enthält weitere Beispiele, wie man Beschränkungen aus Python Skripten erstellt.