Sketcher ConstrainSymmetric/de: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/de |Equal Length |Constrain Block |Skizzierer |IconL=Constraint_EqualLength.pn...")
(Updating to match new version of source page)
 
(44 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

{{Docnav/de
{{Docnav/de
|[[Sketcher_ConstrainEqual/de|Equal Length]]
|[[Sketcher_ConstrainEqual/de|GleichheitFestlegen]]
|[[Sketcher_ConstrainBlock/de|Constrain Block]]
|[[Sketcher_ConstrainBlock/de|Fixieren]]
|[[Sketcher_Workbench/de|Skizzierer]]
|[[Sketcher_Workbench/de|Sketcher]]
|IconL=Constraint_EqualLength.png
|IconL=Sketcher_ConstrainEqual.svg
|IconR=Sketcher_ConstrainBlock.svg
|IconC=Workbench_Sketcher.svg
|IconC=Workbench_Sketcher.svg
|IconR=Sketcher_ConstrainBlock.png
}}
}}


<div class="mw-translate-fuzzy">
{{GuiCommand/de
{{GuiCommand/de
|Name=Sketcher ConstrainSymmetric
|Name=Sketcher ConstrainSymmetric
|Name/de=Skizzierer BeschränkungSymmetrie
|Name/de=Sketcher SymmetrieFestlegen
|MenuLocation=SketchSkizzen-Beschränkungen → Symmetrie festlegen
|Workbenches=[[Sketcher Workbench/de|Sketcher]], [[PartDesign Workbench/de|PartDesign]]
|Workbenches=[[Sketcher_Workbench/de|Sketcher]]
|MenuLocation=SkizzeSkizzierer Beschränkungen → Beschränke symmetrisch
|Shortcut={{KEY|S}}
|SeeAlso=[[Sketcher ConstrainParallel/de|Beschränkung Parallel]]
|SeeAlso=[[Sketcher_ConstrainParallel/de|Sketcher ParallelFestlegen]]
}}
}}
</div>


<span id="Description"></span>
==Beschreibung==
==Beschreibung==


<div class="mw-translate-fuzzy">
The symmetrical constraint constrains two selected points to be symmetrical around a given line, i.e., both selected points are constrained to lie on a normal to the line through both points and are constrained to be equidistant from the line. Alternatively it can constrain two points to be symmetric with respect to a third one.
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.
</div>


==Usage==
<span id="Usage"></span>
==Anwendung==


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


===[[Sketcher_Workbench#Continue_modes|Continue mode]]===
Select two points (vertexes) in the sketch and a line in the sketch. The selected points and the line will be dark green.


# Make sure there is no selection.
[[File:SymmetricConstraint2.png|256px]]
# 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===
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.


# Do one of the following:
This will apply the constraint to the selected items.
#* 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.


==Notes==
[[File:SymmetricConstraint3.png|256px]]


* The arrows of this constraint show the color of the dimensional constraints.
{{Emphasis|Note:}} 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.


<span id="Scripting"></span>
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].
== Skripten ==


Zwei Punkte und eine Symmetrielinie:
{{Docnav|[[Sketcher_ConstrainEqual|Equal Length]]|[[Sketcher_ConstrainBlock|Constrain Block]]|[[Sketcher_Workbench|Sketcher]]|IconL=Constraint_EqualLength.png|IconC=Workbench_Sketcher.svg|IconR=Sketcher_ConstrainBlock.png}}

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

Zwei Punkte und ein Symmetriepunkt:

{{Code|code=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):

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

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


{{Docnav/de
|[[Sketcher_ConstrainEqual/de|GleichheitFestlegen]]
|[[Sketcher_ConstrainBlock/de|Fixieren]]
|[[Sketcher_Workbench/de|Sketcher]]
|IconL=Sketcher_ConstrainEqual.svg
|IconR=Sketcher_ConstrainBlock.svg
|IconC=Workbench_Sketcher.svg
}}


{{Sketcher Tools navi{{#translation:}}}}
{{Sketcher_Tools_navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}

Latest revision as of 10:54, 7 May 2024

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.

Notes

  • The arrows of this constraint show the color of the dimensional constraints.

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.