Entwurf Polygon
Menüeintrag |
---|
Entwurf → Polygon |
Arbeitsbereich |
Entwurf, Arch |
Standardtastenkürzel |
P G |
Eingeführt in Version |
0.7 |
Siehe auch |
Entwurf Kreis, Entwurf Muster |
Beschreibung
Das Polygonwerkzeug erstellt ein regelmäßiges Polygon, das in einen Umfang eingeschrieben ist, indem es zwei Punkte auswählt, den Mittelpunkt und den Radius. Es wird das Draft Linestyle/de verwendet, das auf dem Draft Tray/de eingestellt ist.
Regelmäßiges Polygon, das durch den Mittelpunkt und den Radius definiert ist
Anwendung
- Drücke die Taste
Draft Polygon oder drücke P dann G Tasten.
- Passe die gewünschte Anzahl von Seiten im Optionsdialog an.
- Klicke auf einen ersten Punkt in der 3D-Ansicht, oder gib eine coordinate und drücke die
add point Taste.
- Klicke auf einen anderen Punkt in der 3D-Ansicht oder gib einen Radiuswert ein, um den Polygonradius zu definieren.
Das Polygon kann durch Doppelklick auf das Element in der Baumansicht oder durch Drücken der Taste Draft Edit/de bearbeitet werden. Dann kannst Du die Mittel- und Radiuspunkte auf eine neue Position verschieben.
Das Polygon wird in einem Kreis mit dem angegebenen Radius einbeschrieben; es kann nach der Erstellung durch Ändern seiner Zeichenmoduseigenschaften auf umschrieben umgeschaltet werden.
Die Anzahl der Seiten des Polygons kann auch nach der Erstellung durch Ändern der Eigenschaft Flächenanzahl geändert werden.
Options
- To enter coordinates manually, simply enter the numbers, then press Enter between each X, Y and Z component. You can press the
add point button when you have the desired values to insert the point.
- Press T or click the checkbox to toggle continue mode. If continue mode is on, the Polygon tool will restart after you finish it, allowing you to draw another one without pressing the tool button again.
- Press L or click the checkbox to toggle filled mode. If filled mode is on, the polygon will create a filled face (DataMake Face
true
); if not, the polygon will not make a face (DataMake Facefalse
). - Hold Ctrl while drawing to force snapping your point to the nearest snap location, independently of the distance.
- Hold Shift while drawing to constrain your second point horizontally or vertically in relation to the first one.
- Press Esc or the Close button to abort the current command.
Eigenschaften
Data
- DataRadius: specifies the radius of the circle that defines the polygon.
- DataDraw Mode: specifies if the polygon is inscribed in a circle, or circumscribed around a circle.
- DataFaces Number: specifies the number of sides of the polygon.
- DataChamfer Size: specifies the size of the chamfers (straight segments) created on the corners of the polygon.
- DataFillet Radius: specifies the radius of the fillets (arc segments) created on the corners of the polygon.
- DataMake Face: specifies if the shape makes a face or not. If it is
true
a face is created, otherwise only the perimeter is considered part of the object.
View
- ViewPattern: specifies a Draft Pattern with which to fill the face of the polygon. This property only works if DataMake Face is
true
, and if ViewDisplay Mode is "Flat Lines". - ViewPattern Size: specifies the size of the Draft Pattern.
Skripten
Siehe auch: Draft API und FreeCAD Grundlagen Skripten.
The Polygon tool can be used in macros and from the Python console by using the following function:
Polygon = makePolygon(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 ofradius
in millimeters. - If
inscribed
isTrue
, the polygon is inscribed in the circle, otherwise it will be circumscribed.- One of the vertices of the polygon will lie on the X axis if no other placement is given.
- If a
placement
is given, it is used; otherwise the shape is created at the origin. - If
face
isTrue
, the shape will make a face, that is, it will appear filled.
Beispiel:
import FreeCAD, Draft
Polygon1 = Draft.makePolygon(4, radius=500)
Polygon2 = Draft.makePolygon(5, radius=750)
ZAxis = FreeCAD.Vector(0, 0, 1)
p3 = FreeCAD.Vector(1000, 1000, 0)
place3 = FreeCAD.Placement(p3, FreeCAD.Rotation(ZAxis, 90))
Polygon3 = Draft.makePolygon(6, radius=1450, placement=place3)
- Grundlagen: Coordinates, Constraining, Snapping (Near, Extension, Parallel, Grid, Endpoint, Midpoint, Perpendicular, Angle, Center, Ortho, Intersection, Special, Dimensions, Working plane)
- Zeichnung: Line, Wire, Circle, Arc, Ellipse, Polygon, Rectangle, Text, Dimension, BSpline, Point, ShapeString, Facebinder, Bezier Curve, Label
- Ändern: Move, Rotate, Offset, Trimex, Upgrade, Downgrade, Scale, Edit, Wire to BSpline, Add point, Delete point, Shape 2D View, Draft to Sketch, Array, Path Array, Point Array, Clone, Drawing, Mirror, Stretch
- Dienstprogramme: Set working plane, Finish line, Close line, Undo line, Toggle construction mode, Toggle continue mode, Apply style, Toggle display mode, Add to group, Select group contents, Toggle snap, Toggle grid, Show snap bar, Heal, Flip Dimension, VisGroup, Slope, AutoGroup, Set Working Plane Proxy, Add to Construction group
- Zusätzlich: Preferences, Import-Export Preferences (DXF/DWG, SVG, OCA, DAT); Draft API

- Installation: Installieren auf Windows, Installieren auf Linux, Installieren auf MacOSX; Erste Schritte
- Grundlagen: Über FreeCAD, Arbeitsbereiche, Programmeinstellungen, Dokumentstruktur, Graphische Oberfläche anpassen, Objekteigenschaften, Mausbedienung; Tutorials
- Arbeitsbereiche: Arch, Draft, FEM, Image, Inspection, Mesh, OpenSCAD, Part, PartDesign, Path, Plot, Points, Raytracing, Reverse Engineering, Robot, Ship, Sketcher, Spreadsheet, Start, Surface, TechDraw, Test Framework, Web
- Scripting: Allgemein: Einführung in Python, FreeCAD scripting tutorial, FreeCAD Scripting Basics, Wie installiere ich Makros?, Gui Command, Units Module: Builtin modules, Erstellung von Arbeitsbereichen, Weitere Workbenches installieren Meshes (Netze): Mesh Scripting, Arbeitsbereich Mesh Teile: Arbeitsbereich Part, Topological data scripting, PythonOCC, Mesh to Part Coin scenegraph: The Coin/Inventor scenegraph, Pivy Qt-Interface: PySide, Using the FreeCAD GUI, Dialog creation Parametrische Objekte: Scripted objects Andere: Code-Schnipsel, Linienzeichnungsfunktion, Einbetten von FreeCAD, FreeCAD-Bibliothek für Vektormathematik, Übersicht für erfahrene Anwender, Grundlagen der FreeCAD-Skripterstellung, Topologisches Daten-Scripting