Part RefineShape/fr: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 19: Line 19:
==Procédure==
==Procédure==
LA commande Python pour affiner une forme est la suivante:
LA commande Python pour affiner une forme est la suivante:
{{Code|code=
<syntaxhighlight>
shape.removeSplitter()
shape.removeSplitter()
}}
</syntaxhighlight>


==Notes==
==Notes==

Revision as of 16:16, 25 November 2016

Affiner la forme

Emplacement du menu
Pièce → Affiner la forme
Ateliers
Part, OpenSCAD
Raccourci par défaut
Aucun
Introduit dans la version
-
Voir aussi
Aucun


Description

Cleans unnecessary lines. After a Boolean operation some lines defining the previous form remain visible, this tool creates a copy of the totally cleaned.

PartRefineShape

Use

  1. Select the shape to be cleaned.
  2. Click the Part → Refine shape menu.
  • A copy of the object is created and totally cleaned, the original object is rendered hidden.
  • The newly created copy is independent of the original.

Limitations

  • L'algorithme de raffinement ne fonctionne que sur des facces. L'outil parcourt les faces de la forme de base et ensuite chaque face crée une nouvelle face et les joint dans la mesure du possible. Cela signifie que si la forme de base n'est qu'une face, fil, arête ou sommet l'algorithme ne fait rien.
  • Par opposition à la fonction RefineShapeFeature dans l'établi OpenSCAD, cette fonction ne met pas à jour les formes sous-jacentes après leurs modifications

Procédure

LA commande Python pour affiner une forme est la suivante:

shape.removeSplitter()

Notes

  • the function does not modify the existing shape, but returns a new shape
  • the function is normally used as last step in the modelling history
  • the function can help to get difficult fillets to work
  • the function is intended to stop 3D printers from printing unwanted edges
  • the function can be used after converting a mesh to shape to clean up the residual edges on planar faces.