Macro Solid Sweep/es


Text-x-python.png Solid Sweep

Descripción
Crea un sólido barriendo un perfil a lo largo de una trayectoria.
Autor
Normandc
Vista
Macros recipes
How to install macros
How to customize toolbars
Version
1.0
Fecha de la última modificación
2011-12-03


Esta macro crea un sólido barriendo un perfil 2D a lo largo de una trayectoria previamente seleccionada en la vista 3D. Los elementos 2D se pueden crear con las herramientas habituales de FreeCAD.

El sólido resultante no es paramétrico. Si cambias el perfil o la trayectoria, necesitarás ejecutar la macro de nuevo.

A few examples of sweeping all using the same oblong section and three kinds of trajectory.

Como se utiliza

Supported 2D elements

Trucos

La macro

import Part, FreeCAD, math, PartGui, FreeCADGui
from FreeCAD import Base

# get the selected objects, with first selection for the trajectory and second for the section
s = FreeCADGui.Selection.getSelection()
try:
     shape1=s[0].Shape
     shape2=s[1].Shape
except:
     print "Wrong selection"

traj = Part.Wire([shape1])
section = Part.Wire([shape2])

# create Part objec in the current document
myObject=App.ActiveDocument.addObject("Part::Feature","Sweep")

# variable makeSolid = 1 to create solid, 0 to create surfaces
makeSolid = True #1
isFrenet = True #1

# create a 3D shape and assigh it to the current document
Sweep = Part.Wire(traj).makePipeShell([section],makeSolid,isFrenet)
myObject.Shape = Sweep 

Créditos

Gracias a Wmayer por su ayuda al escribir esta macro.

Dos ejemplo de uso se pueden ver en este hilo del foro, así como enlaces para descargar archivos FCStd. Utilizando una hélice como trayectoria, un sólido barrido se puede utilizar para crear un tornillo.

Online version: "http://www.freecadweb.org/wiki/index.php?title=Macro_Solid_Sweep/es&oldid=240624"

Navigation menu