|
Menüeintrag |
---|
Skizze → Sketcher-Randbedingungen → Symmetrisch festlegen |
Arbeitsbereich |
Sketcher |
Standardtastenkürzel |
S |
Eingeführt in Version |
- |
Siehe auch |
Keiner |
Beschreibung
Das Werkzeug Sketcher SymmetrischFestlegen: Legt zwei Punkte symmetrisch zu einer Linie oder Achse bzw. zu einem dritten Punkt fest.
Anwendung
Siehe auch: Zeichnungshilfen.
Fortsetzen-Modus
- Make sure there is no selection.
- 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 1.0: Right-click in the 3D view and select the Constrain →
Constrain symmetric option from the context menu.
- Use the keyboard shortcut: S.
- Press the
- 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 Esc, or start another geometry or constraint creation tool.
Einmal-Ausführen-Modus
- 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).
- Invoke the tool as explained above, or with the following additional option:
- introduced in 1.0: Right-click in the 3D view and select the
Constrain symmetric option from the context menu.
- introduced in 1.0: Right-click in the 3D view and select the
- A constraint is added.
Hinweise
- Die Pfeile dieser Randbedingung zeigen die Farbe der maßeichen Randbedingungen.
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.
Diese Seite wird abgerufen von https://wiki.freecad.org/Sketcher_ConstrainSymmetric