|
Ubicación en el Menú |
---|
Diseño de Piezas → Redondeo |
Entornos de trabajo |
Diseño de Piezas, Complete |
Atajo de teclado por defecto |
None |
Ver también |
Redondeo |
This tool creates fillets (rounds) on the selected edges of an object. A new separate Fillet entry (followed by a sequential number if there are already existing fillets in the document) is created in the Project tree.
The PartDesign Fillet is not to be confused with its Part workbench counterpart. Although they share the same icon, they are not the same, and are not used the same way. Here is how they differ from each other:
The tool Fillet can be used in a macro, and, from the Python console using the following function :
Box = Box.makeFillet(3,[Box.Edges[0]]) # 1 Fillet Box = Box.makeFillet(3,[Box.Edges[1],Box.Edges[2],Box.Edges[3],Box.Edges[4]]) # for several Fillets
Example :
import PartDesign from FreeCAD import Base Box = Part.makeBox(10,10,10) Box = Box.makeFillet(3,[Box.Edges[0]]) # pour 1 Fillet Box = Box.makeFillet(3,[Box.Edges[1],Box.Edges[2],Box.Edges[3],Box.Edges[4]]) # for several Fillets Part.show(Box)