Addon/it: Difference between revisions

From FreeCAD Documentation
(Created page with "Esistono due tipi di addon. * Le macro: brevi frammenti di codice Python che forniscono un nuovo strumento o funzionalità. * Gli External workbe...")
(Created page with "Le macro di solito all'inizio sono un modo per semplificare o automatizzare l'attività di disegno o modifica di un oggetto particolare. Se molte di queste macro vengono racco...")
Line 9: Line 9:
* Gli [[External workbenches/it|ambienti aggiuntivi]]: raccolte di strumenti programmati in Python o C ++ che estendono FreeCAD in modo sigificativo.
* Gli [[External workbenches/it|ambienti aggiuntivi]]: raccolte di strumenti programmati in Python o C ++ che estendono FreeCAD in modo sigificativo.


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.
Le macro di solito all'inizio sono un modo per semplificare o automatizzare l'attività di disegno o modifica di un oggetto particolare. Se molte di queste macro vengono raccolte in una directory, l'intera directory può essere distribuita come un nuovo 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 14:21, 16 December 2018

Introduzione

In FreeCAD e in questa documentazione, un addon è un componente che non fa parte dell'installazione di base di FreeCAD, ma che può essere aggiunto al sistema con determinati metodi.

Esistono due tipi di addon.

  • Le macro: brevi frammenti di codice Python che forniscono un nuovo strumento o funzionalità.
  • Gli ambienti aggiuntivi: raccolte di strumenti programmati in Python o C ++ che estendono FreeCAD in modo sigificativo.

Le macro di solito all'inizio sono un modo per semplificare o automatizzare l'attività di disegno o modifica di un oggetto particolare. Se molte di queste macro vengono raccolte in una directory, l'intera directory può essere distribuita come un nuovo 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.