Addon/de: Difference between revisions

From FreeCAD Documentation
(Created page with "Es gibt zwei Arten von Addons: * Makros: kurze Schnippsel von Python-Code, die ein neues Werkzeug oder eine Funktionalität hinzufügen * Externa...")
(Created page with "Makros starten normalerweise als Möglichkeit, eine Zeichnungsaufgabe oder Änderung eines bestimmtes Objekt zu vereinfachen oder zu automatisieren. Wenn viele dieser Makros i...")
Line 9: Line 9:
* [[External workbenches/de|Externe Arbeitsbereiche]]: Sammlungen von Werkzeugen in Python oder C++, die FreeCAD in einer wichtigen Weise erweitern
* [[External workbenches/de|Externe Arbeitsbereiche]]: Sammlungen von Werkzeugen in Python oder C++, die FreeCAD in einer wichtigen Weise erweitern


Makros starten normalerweise als Möglichkeit, eine Zeichnungsaufgabe oder Änderung eines bestimmtes Objekt zu vereinfachen oder zu automatisieren. Wenn viele dieser Makros innerhalb eines Verzeichnisses gesammelt werden, kann das gesamte Verzeichnis als ein neuer Arbeitsbereich verteilt werden.
Macros usually start as a way to simplify or automate the task of drawing or editing a particular object. If many of these macros are collected inside a directory, the entire directory may be distributed as a new workbench.


In other words, macros and workbenches are essentially the same thing, pieces of code that extend the base installation. Macros are usually short utilities focused on a single task, while workbenches are collections of organized tools and graphical interfaces to perform related tasks.
In other words, macros and workbenches are essentially the same thing, pieces of code that extend the base installation. Macros are usually short utilities focused on a single task, while workbenches are collections of organized tools and graphical interfaces to perform related tasks.

Revision as of 17:16, 16 December 2018

Einführung

In FreeCAD und dieser Dokumentation ist ein Addon eine beliebige Komponente, die nicht Teil der Basis-FreeCAD-Installation ist, die aber dem System durch bestimmte Methoden hinzugefügt werden kann.

Es gibt zwei Arten von Addons:

  • Makros: kurze Schnippsel von Python-Code, die ein neues Werkzeug oder eine Funktionalität hinzufügen
  • Externe Arbeitsbereiche: Sammlungen von Werkzeugen in Python oder C++, die FreeCAD in einer wichtigen Weise erweitern

Makros starten normalerweise als Möglichkeit, eine Zeichnungsaufgabe oder Änderung eines bestimmtes Objekt zu vereinfachen oder zu automatisieren. Wenn viele dieser Makros innerhalb eines Verzeichnisses gesammelt werden, kann das gesamte Verzeichnis als ein neuer Arbeitsbereich verteilt werden.

In other words, macros and workbenches are essentially the same thing, pieces of code that extend the base installation. Macros are usually short utilities focused on a single task, while workbenches are collections of organized tools and graphical interfaces to perform related tasks.

If a workbench is sufficiently developed and is well documented, it may be included as one of the base workbenches in FreeCAD.

Installation

Starting from FreeCAD 0.17, the recommended way to install addons is with the Addon Manager.

Manual installation is still possible.