Draft Trimex/de: Difference between revisions

From FreeCAD Documentation
(Created page with "==Beschneiden_oder_verlängern==")
(Created page with "==Extrudieren==")
Line 22: Line 22:
==Beschreibung==
==Beschreibung==


Das Werkzeug [[Image:Draft_Trimex.svg|24px]] '''Draft Trimex''' [[#Beschneiden_oder_verlängern|beschneidet oder verlängert ]] ein ausgewähltes Objekt. Schnittstellen mit einem anderen Objekt können zum Bestimmen neuer Endpunkte verwendet werden. Der Befehl kann auch verwendet werden, um eine Fläche zu [[#Extrudieren|extrudieren]]; in so einem Fall erstellt er ein [[Part_Extrude/de|Part Extrude]]-Objekt.
<div class="mw-translate-fuzzy">
Das Trimex Werkzeug stutzt oder streckt [[Draft Line/de|Entwurf Linie]]n und [[Draft Wire/de|Entwurf Draht]] so, dass sie an einem Schnittpunkt mit einer anderen Linie oder Kante enden.
</div>


[[Image:Draft trimex example.jpg|400px]]
[[Image:Draft trimex example.jpg|400px]]
Line 61: Line 59:
</div>
</div>


==Extrude==
<span id="Extrude"></span>
==Extrudieren==


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


See also: [[Draft_Snap|Draft Snap]] and [[Draft_Constrain|Draft Constrain]].
See also: [[Draft_Snap|Draft Snap]] and [[Draft_Constrain|Draft Constrain]].

Revision as of 11:51, 12 March 2023

Draft Trimex

Menüeintrag
Änderung → Trimex
Arbeitsbereich
Draft, Arch
Standardtastenkürzel
T R
Eingeführt in Version
-
Siehe auch
Part Extrudieren

Beschreibung

Das Werkzeug Draft Trimex beschneidet oder verlängert ein ausgewähltes Objekt. Schnittstellen mit einem anderen Objekt können zum Bestimmen neuer Endpunkte verwendet werden. Der Befehl kann auch verwendet werden, um eine Fläche zu extrudieren; in so einem Fall erstellt er ein Part Extrude-Objekt.

Drahtsegment gestreckt, dann Drahtsegment gestutzt; Fläche zu einem festen Körper extrudiert

Beschneiden_oder_verlängern

Usage

  1. Wähle eine Linie, die Du stutzen oder strecken möchtest, oder wähle eine Fläche, die Du extrudieren möchtest.
  2. Drücke die Draft Trimex Taste, oder drücke T dann R Tasten.
  3. Klicke auf einen Punkt in der 3D Ansicht oder gib eine Entfernung ein und drücke Enter.

Options

The single character keyboard shortcut and the modifier keys mentioned here can be changed. See Draft Preferences.

  • Hold down Alt to invert the default result of the command.
  • Hold down Shift to restrict the operation to the current segment of a Draft Wire.
  • Press S to switch Draft snapping on or off.

Here is an example to explain the modifier keys. The left edge or the bottom edge of the U-shaped wire was extended. All Draft Snaps were turned off.

  • Drücke X, Y oder Z, um den Punkt auf der angegebenen Achse zu beschränken.
  • Halte Shift gedrückt, um den Vorgang auf das aktuelle Segment zu begrenzen, und vermeide, ein anderes auszuwählen.
    • Im Falle des Extrusionsmodus halte Shift gedrückt, um eine Fläche in eine andere Richtung zu extruieren.
  • Halte Alt während des Stutzens gedrückt, um die Richtung des Vorgangs umzukehren, d.h. das andere Ende des Drahtes wird beschnitten.

Extrudieren

Anwendung

See also: Draft Snap and Draft Constrain.

  1. It can be helpful to first change the Draft working plane so that it is not coplanar with the face you want to extrude.
  2. Optionally select a single face or an object with a single face.
  3. There are several ways to invoke the command:
    • Press the Draft Trimex button.
    • Select the Modification → Trimex option from the menu.
    • Use the keyboard shortcut: T then R.
  4. If you have not yet selected an object or a face: select an object with a single face in the 3D view.
  5. The Trimex task panel opens. See Options for more information.
  6. To define the extrusion direction and distance do one of the following:
    • Pick a point in the 3D view that does no lie on the same plane as the face.
    • Make sure the pointer is on the correct side of the face in the 3D view and enter a Distance.

Options

The modifier key mentioned here can be changed. See Draft Preferences.

  • Hold Shift to extrude in a direction that is not parallel to the normal of the face.

Preferences

See also: Preferences Editor and Draft Preferences.

  • To change the number of decimals used for the input of the distance: Edit → Preferences... → General → Units → Units settings → Number of decimals.

Scripting

Skripten

Siehe auch: Draft API und FreeCAD Scripting Grundlagen.

Für das Trimex Werkzeug ist keine Programmierschnittstelle verfügbar. Siehe das Teilextrusion Werkzeug für die Extrusion von Flächen und anderen Formen.

extrusion = extrude(obj, vector, solid=False)
  • obj is the object to be extruded.
  • vector is the extrusion direction and distance.
  • If solid is True a solid is created instead of a shell.
  • extrusion is returned with the created object.

Example:

import FreeCAD as App
import Draft

doc = App.newDocument()

rectangle = Draft.make_rectangle(1500, 500)
doc.recompute()

vector = App.Vector(0, 0, 300)
solid = Draft.extrude(rectangle, vector, solid=True)
doc.recompute()