CAM ToolShape/fr: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 19: Line 19:
Initialement, les Formes d'outil sont juste des documents FreeCAD avec un seul corps créé à partir de l'atelier [[Image:Workbench_PartDesign.svg|24px|link=PartDesign_Workbench]] [[PartDesign_Workbench/fr|Part Design]].
Initialement, les Formes d'outil sont juste des documents FreeCAD avec un seul corps créé à partir de l'atelier [[Image:Workbench_PartDesign.svg|24px|link=PartDesign_Workbench]] [[PartDesign_Workbench/fr|Part Design]].


La création de nouveaux ToolShapes est un sujet avancé. Les ToolShapes les plus couramment utilisés existent déjà et sont fournis avec l'installation de FreeCAD à l'adresse suivante:
La création de nouvelles Formes d'outil est un sujet avancé. Les Formes d'outil les plus couramment utilisés existent déjà et sont fournis avec l'installation de FreeCAD à l'adresse suivante:


* Sous Linux, il s'agit généralement de {{incode|/usr/lib64/FreeCAD/Mod/Path/Tools/Shape}}.
* Sous Linux, il s'agit généralement de {{incode|/usr/lib64/FreeCAD/Mod/Path/Tools/Shape}}.

Revision as of 12:00, 12 September 2021

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

Les ToolShapes sont un élément essentiel du système Path Outils. Les ToolShapes sont les modèles à partir desquels les ToolBits sont créés. Elles représentent la forme physique spécifique d'un outil. Un ToolShape ne décrit pas complètement l'outil - pour cela, des paramètres supplémentaires sont nécessaires, qui seront ajoutés lorsqu'un outil réel sera paramétré à partir du modèle.

Initialement, les Formes d'outil sont juste des documents FreeCAD avec un seul corps créé à partir de l'atelier Part Design.

La création de nouvelles Formes d'outil est un sujet avancé. Les Formes d'outil les plus couramment utilisés existent déjà et sont fournis avec l'installation de FreeCAD à l'adresse suivante:

  • Sous Linux, il s'agit généralement de /usr/lib64/FreeCAD/Mod/Path/Tools/Shape.
  • Sous Windows, il s'agit généralement de C:\Program Files\FreeCAD\Mod\Path\Tools\Shape.
  • Sous macOS, il s'agit généralement de /Applications/FreeCAD/Mod/Path/Tools/Shape --> doit être révisé.

Ce sont :

ballend.fcstd
bullnose.fcstd
chamfer.fcstd
drill.fcstd
endmill.fcstd
probe.fcstd
slittingsaw.fcstd
thread-mill.fcstd
v-bit.fcstd

Ils se trouvent dans le sous-répertoire /Mod/Path/Tools/Shape/ où FreeCAD a été installé.

Utilisation

  1. Create a new FreeCAD document
  2. Open the Part Design workbench
  3. Create a body and give the body a label you want to show up in the bit selection.
  4. Create a sketch in the XZ plane and draw half the profile of the bit.
    • Put the top center of the bit on the origin (0,0)
  5. For any constraint serving as a parameter for the tool (like overall Length) create a named constraint
    • The name is the label of the input field
    • Names are split at CamelCase boundaries into words in the edit dialog
    • Use a ; in the name to add help text which will show up as the entry fields tool tip
    • If the tool is used by legacy ops it should at least have one constraint called Diameter
    • Use construction lines for constraints that are not directly accessible, like Diameter and Angle
    • Any unnamed constraint will not be editable for a specific tool
  6. Once the sketch is fully constrained, close the sketch
  7. Revolve the sketch around the z-axis
  8. Save the document as a new file in the Shape directory

Tool Thumbnail Images

Toolbits will have a small icon image of the tool in the tree if the image is saved with thumbnails active.

Important notes:

  • Before saving the document make sure you have Save Thumbnail selected, and Add program logo deselected in FreeCAD's preferences.
  • Also make sure to switch to Front View and Fit content to screen
  • Whatever you see when saving the document will end up being the visual representation of the template

Options

Template:Path Tools navi/fr