Std Neu
Jump to navigation
Jump to search
Outdated translations are marked like this.
Menüeintrag |
---|
Datei → Neu |
Arbeitsbereich |
Alle |
Standardtastenkürzel |
Strg+N |
Eingeführt in Version |
- |
Siehe auch |
Öffnen,Import |
Beschreibung
Der Befehl Std Neu erzeugt ein neues leeres Dokument und macht es zum aktiven Dokument.
Anwendung
- There are several ways to invoke the command:
- Press the
Std New button.
- Select the File →
New option from the menu.
- Use the keyboard shortcut: Ctrl+N.
- Press the
Einstellungen
- FreeCAD will create a new document at start up if Tools → Edit parameters... → BaseApp → Preferences → Document → CreateNewDoc is set to
true
. This setting can also be changed in the Preferences Editor. - Some document properties: author names, company name and license information, can be preset in the Preferences Editor.
Eigenschaften
Die meisten Eigenschaften können auch im Dialogfeld des Std ProjektInfo Befehls geändert werden.
- DataComment: Any comment that may apply.
- DataCompany: Company name. Can be preset.
- DataCreated By: Author name. Can be preset.
- DataCreation Date: Automatic date stamp. Not editable.
- DataFile Name: The full path of the file. Blank if the document has not been saved. Not editable.
- DataId: Not implemented yet.
- DataLabel: The name that will appear in the Tree view. By default the name of the document.
- DataLast Modified By: Author name. Can be preset.
- DataLast Modified Date: Automatic date stamp. Not editable.
- DataLicense: License type. Can be preset.
- DataLicense URL: License URL. Can be preset.
- DataShow Hidden: If true, items that have been hidden in the Tree view will be displayed anyway. Hiding items in the tree can be useful when working on larger models.
- DataTip: Not implemented yet.
- DataTip Name: Not implemented yet.
- DataTransient Dir: The transient directory used for recovery data. Not editable.
Skripten
Siehe auch: FreeCAD Grundlagen Skripten.
Um ein neues Dokument zu erstellen, verwende die newDocument
Methode der FreeCAD Anwendung.
import FreeCAD
from pathlib import Path
# The folder and filename we will use:
fld = 'D:/testfiles/'
fnm = fld + 'test.FCStd'
# Make sure fld exists:
Path(fld).mkdir(parents=True, exist_ok=True)
doc = FreeCAD.newDocument()
doc.saveAs(fnm)
FreeCAD.closeDocument(doc.Name)
doc = FreeCAD.open(fnm)
doc.save()
FreeCAD.closeDocument(doc.Name)
Anwenderdokumentation

- 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