CAM Bibliothèque des outils coupants

From FreeCAD Documentation
Revision as of 09:25, 12 September 2021 by David69 (talk | contribs) (Created page with "Dans le système Path Outils, les Toolbits sont organisés en bibliothèques. Une bibliothèque est simplement une liste de Toolbits et peut être utilisée...")
Other languages:

This documentation is not finished. Please help and contribute documentation.

GuiCommand model explains how commands should be documented. Browse Category:UnfinishedDocu to see more incomplete pages like this one. See Category:Command Reference for all commands.

See WikiPages to learn about editing the wiki pages, and go to Help FreeCAD to learn about other ways in which you can contribute.

Description

Dans le système Path Outils, les Toolbits sont organisés en bibliothèques. Une bibliothèque est simplement une liste de Toolbits et peut être utilisée par l'utilisateur dans n'importe quel but. Une bibliothèque d'outils est néanmoins une excellente représentation pour un regroupement physique d'outils, comme dans un changeur automatique d'outils. Les outils peuvent également être regroupés par utilisation prévue, par exemple tous les outils de découpe du plastique.

A tool library is a (JSON) file with a mapping of tool id to the path of the toolbit file. As a consequence each toolbit can be in multiple libraries.

Due to each tool being stored in its own file and the storage/organization of those files being quite flexible the importance of a tool library for organisational purposes is quite diminished. The user is free to organize their tools in whichever directory hierarchy they see fit and can also name them as best fits their use and organisation.

Toolbit IDs

The Toolbit does not have an id of it's own. The id is a property of the library. When a toolbit is used to create a toolcontroller, the ID in the current library will become the default tool number in the controller. Of course, the tool number can be changed in the tool controller.

Usage

Export

A toolbit library can be exported to create a LinuxCNC Tool Table (.tbl).

JSON Structure

{
  "tools": [
    {
      "nr": 1,
      "path": "t1.fctb"
    },
    {
      "nr": 2,
      "path": "t2.fctb"
    },
    {
      "nr": 3,
      "path": "t3.fctb"
    }
  ],
  "version": 1
}

Options

Template:Path Tools navi/fr