Draft Line/de: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Userdocnavi/de}}")
No edit summary
Line 21: Line 21:


[[Image:Draft_Line_example.jpg|400px]]
[[Image:Draft_Line_example.jpg|400px]]
{{Caption|Linie erzeugt durch zwei Punkte}}
<div class="mw-translate-fuzzy">
[[Image:Draft_Line_example.jpg|400px]]
</div>


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">

Revision as of 22:02, 23 March 2019

Draft Linie

Menüeintrag
Entwurf → Linie
Arbeitsbereich
Draft, Arch
Standardtastenkürzel
L I
Eingeführt in Version
0.7
Siehe auch
Draft Linienzug, Draft Punkt

Beschreibung

Mit dem Werkzeug Gerade wird zwischen zwei vorgegebenen Punkten eine Gerade erzeugt. Linienstärke und -farbe richten sich nach der Voreinstellung mit Entwurf Tray. Das Werkzeug verhält sich genauso wie Linienzug, außer dass es nach zwei Punkten endet.

Linie erzeugt durch zwei Punkte

Anwendung

  1. Drücken von
    1. Knopf Draft Line auf Bildschirm oder
    2. Taste L und dann Taste I auf Tastatur.
  2. Ersten Punkt wählen:
    1. auf entsprechende Stelle des Bildschirms klicken oder
    2. kartesischen Koordinatenwert auf Tastatur eingeben.
  3. Zweiten Punkt wählen:
    1. auf entsprechende Stelle des Bildschirms klicken oder
    2. kartesischen Koordinatenwert auf Tastatur eingeben.

Die Linie kann durch doppelklicken des Elements in der Baumansicht geändert werden oder durch drücken der Schaltfläche Bearbeiten. Dann kannst Du die Punkte an eine andere Position ziehen.

Fusing single lines

If several connected Draft Lines are selected they can be fused into a wire by pressing the Draft Upgrade tool; however, this wire will not be editable. To create an editable wire, use Draft Upgrade three more times on the new shapes (wire, closed wire, face). You can also fuse the original lines with the Draft Wire tool.

A wire can also be created from a single line by adding another point anywhere along its length. To do this, press the add point button, and click anywhere on the line.

Optionen

  • Drücken von X, Y oder Z auf der Tastatur nach erfolgter Festlegung des ersten Punkts erzwingt für den zweiten Punkt den gleichen z-, y- bzw. z-Koordinaten-Wert
  • Nach Tastatur-Eingabe der kartesichen Koordinaten-Werte nach jedem x-, y- und/oder z-Wert die Eingabetaste (Enter) ENTER drücken.
  • Press R or click the checkbox to check/uncheck the Relative button. If relative mode is on, the coordinates of the second point are relative to the first one. If not, they are absolute, taken from the (0,0,0) origin point.
  • Press T or click the checkbox to check/uncheck the Continue button. If continue mode is on, the Line tool will restart after you give the second point, allowing you to draw another line segment without pressing the Line button again.
  • Press CTRL while drawing to force snapping your point to the nearest snap location, independently of the distance.
  • Press SHIFT while drawing to constrain your second point horizontally or vertically in relation to the first one.
  • Press CTRL+Z or press the Undo button to undo the last point.
  • Press ESC or the Cancel button to abort the current Line command.
  • If several connected Draft Lines are selected they can be transformed into a wire by pressing the Draft Upgrade Button.

Properties

  • Daten-EigenschaftStart: Der Startpunkt
  • Daten-EigenschaftEnd: Der Endpunkt
  • Daten-EigenschaftSubdivisions: Dividiert die Linie mit der angegebenen Anzahl von Unterteilungen eingeführt mit Version 0.16

Daten

  • Daten-EigenschaftStart: Gibt den Startpunkt an.
  • Daten-EigenschaftEnd: Gibt den Endpunkt an.
  • Daten-EigenschaftSubdivisions: Gibt die Anzahl von inneren Knoten der Linie an. eingeführt mit Version 0.16
  • Daten-EigenschaftLength: (nur-lesen) Gibt die Länge des Segments an.

View

  • AnsichtEnd Arrow: if it is true it will display a symbol at the last point of the line, so it can be used as an annotation line.
  • AnsichtArrow Size: specifies the size of the symbol displayed at the end of the line.
  • AnsichtArrow Type: specifies the type of symbol displayed at the end of the line, which can be "Dot", "Circle", "Arrow", or "Tick".

Scripting

Siehe auch: Draft API und FreeCAD Scripting Basics.

Das Linie-Werkzeug kann in Makros und aus der Python-Konsole heraus durch folgende Funktion angesprochen werden:

Line = makeLine(p1, p2)
Line = makeLine(LineSegment)
Line = makeLine(Shape)
  • Erstellt ein Line-Objekt zwischen den beiden durch Vektoren gegebenen Punkten p1 and p2, die jeweils durch ihren FreeCAD.Vector definiert sind.
  • Erstellt eine Line aus einem Part.LineSegment
  • Erstellt eine Line vom ersten zum letzten Eckpunkt eines gegebenen Shape-Objekts

Beispiel:

import FreeCAD, Draft

p1 = FreeCAD.Vector(0, 0, 0)
p2 = FreeCAD.Vector(1000, 500, 0)
p3 = FreeCAD.Vector(-250, -500, 0)
p4 = FreeCAD.Vector(500, 1000, 0)

Line1 = Draft.makeLine(p1, p2)
Line2 = Draft.makeLine(p3, p4)