Draft Vieleck

From FreeCAD Documentation
Revision as of 07:29, 9 November 2023 by FBXL5 (talk | contribs)

Draft Vieleck

Menüeintrag
Entwurf → Vieleck
Arbeitsbereich
Draft, Arch
Standardtastenkürzel
P G
Eingeführt in Version
0.7
Siehe auch
Keiner

Beschreibung

Das Werkzeug Draft Vieleck erstellt ein regelmäßiges Vieleck (Polygon) auf der aktuellen Arbeitsebene aus einem Mittelpunkt und einem Radius. Der Radius kann durch Indizieren eines Punktes festgelegt werden.

Ein Draft-Vieleck kann mit der Daten-EigenschaftDraw Mode von inscribed (mit Umkreis) auf circumscribed (mit Inkreis) umgeschaltet werden. Die Ecken eines Draft-Vielecks können mit Rundung (Fillet) oder Fase (Chamfer) versehen werden, indem seine Daten-EigenschaftFillet Radius oder Daten-EigenschaftChamfer Size geändert werden.

Ein durch zwei Punkte, den Mittelpunkt und den Radius, festgelegtes regelmäßiges Vieleck

Anwendung

See also: Draft Tray, Draft Snap and Draft Constrain.

  1. Drücke die Taste Draft Polygon oder drücke P dann G Tasten.
  2. Passe die gewünschte Anzahl von Seiten im Optionsdialog an.
  3. Klicke auf einen ersten Punkt in der 3D-Ansicht, oder gib eine Koordinate und drücke die add point Taste.
  4. Klicke auf einen anderen Punkt in der 3D-Ansicht oder gib einen Radiuswert ein, um den Polygonradius zu definieren.

Optionen

Die im Aufgabenbereich vorhandenen Einzelzeichen-Tastaturkürzel können geändert werden. Siehe Draft Einstellungen. Die hier genannten Tastaturkürzel sind die voreingestellten Tastaturkürzel.

  • To manually enter the coordinates for the center enter the X, Y and Z component, and press Enter after each. Or you can press the Enter point button when you have the desired values. It is advisable to move the pointer out of the 3D view before entering coordinates.
  • Press G or click the Global checkbox to toggle global mode. If global mode is on, coordinates are relative to the global coordinate system, else they are relative to the working plane coordinate system. introduced in version 0.20
  • Press L or click the Filled checkbox to toggle filled mode. If filled mode is on, the created polygon will have DatenMake Face set to true and will have a filled face.
  • Press T or click the Continue checkbox to toggle continue mode. If continue mode is on, the command will restart after finishing, allowing you to continue creating polygons.
  • Press S to switch Draft snapping on or off.
  • Press Esc or the Close button to abort the command.

Hinweise

Einstellungen

Siehe auch: Voreinstellungseditor und Draft Einstellungen.

  • To change the number of decimals used for the input of coordinates and radii: Edit → Preferences... → General → Units → Units settings → Number of decimals.
  • To change the initial value of filled mode: Edit → Preferences... → Draft → General settings → Draft tools options → Fill objects with faces whenever possible. Changing the filled mode in a task panel will override this preference for the current FreeCAD session.
  • If the Edit → Preferences... → Draft → General settings → Draft tools options → Use Part Primitives when available option is checked, the command will create a Part RegularPolygon instead of a Draft Polygon.

Eigenschaften

Siehe auch: Eigenschafteneditor.

Ein Draft-Vieleck (Polygon-Objekt) wird von einem Part Part2DObject abgeleitet und erbt alle seine Eigenschaften. Außerdem hat es die folgenden zusätzlichen Eigenschaften:

Daten

Draft

  • DatenArea (Area): (read-only) specifies the area of the face of the polygon. The value will be 0.0 if DatenMake Face if false.
  • DatenChamfer Size (Length): specifies the length of the chamfers at the corners of the polygon.
  • DatenDraw Mode (Enumeration): specifies if the polygon is inscribed in a circle or circumscribed around a circle.
  • DatenFaces Number (Integer): specifies the number of sides of the polygon.
  • DatenFillet Radius (Length): specifies the radius of the fillets at the corners of the polygon.
  • DatenMake Face (Bool): specifies if the polygon makes a face or not. If it is true a face is created, otherwise only the perimeter is considered part of the object.
  • DatenRadius (Length): specifies the radius of the circle that defines the polygon.

Ansicht

Draft

  • AnsichtPattern (Enumeration): specifies the Draft Pattern with which to fill the face of the polygon. This property only works if DatenMake Face is true and if AnsichtDisplay Mode is Flat Lines.
  • AnsichtPattern Size (Float): specifies the size of the Draft Pattern.

Skripten

Siehe auch: Autogenerierte API-Dokumentation und FreeCAD Grundlagen Skripten.

To create a Draft Polygon use the make_polygon method (introduced in version 0.19) of the Draft module. This method replaces the deprecated makePolygon method.

polygon = make_polygon(nfaces, radius=1, inscribed=True, placement=None, face=None, support=None)
  • Creates a polygon object with the given number of faces (nfaces), and based on a circle of radius in millimeters.
  • If inscribed is True, the polygon is inscribed in the circle, otherwise it will be circumscribed.
  • If placement is None the polygon is created at the origin and one of its vertices will lie on the X axis.
  • If face is True, the polygon will make a face, that is, it will appear filled.

Beispiel:

import FreeCAD as App
import Draft

doc = App.newDocument()

polygon1 = Draft.make_polygon(4, radius=500)
polygon2 = Draft.make_polygon(5, radius=750)

zaxis = App.Vector(0, 0, 1)
p3 = App.Vector(1000, 1000, 0)
place3 = App.Placement(p3, App.Rotation(zaxis, 90))

Polygon3 = Draft.make_polygon(6, radius=1450, placement=place3)

doc.recompute()