Addon/de: Difference between revisions

From FreeCAD Documentation
(Created page with "In FreeCAD und dieser Dokumentation ist ein Addon eine beliebige Komponente, die nicht Teil der Basis-FreeCAD-Installation ist, die aber dem System durch bestimmt...")
(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...")
Line 5: Line 5:
In FreeCAD und dieser Dokumentation ist ein [[addon/de|Addon]] eine beliebige Komponente, die nicht Teil der Basis-FreeCAD-Installation ist, die aber dem System durch bestimmte Methoden hinzugefügt werden kann.
In FreeCAD und dieser Dokumentation ist ein [[addon/de|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:
There are two types of addons.
* [[Macros]]: short snippets of [[Python]] code that provide a new tool or functionality.
* [[Macros/de|Makros]]: kurze Schnippsel von [[Python/de|Python]]-Code, die ein neues Werkzeug oder eine Funktionalität hinzufügen
* [[External workbenches]]: collections of tools programmed in Python or C++ that extend FreeCAD in an important way.
* [[External workbenches/de|Externe Arbeitsbereiche]]: Sammlungen von Werkzeugen in Python oder C++, die FreeCAD in einer wichtigen Weise erweitern


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.
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.

Revision as of 17:15, 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

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.

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.