Hi all,
I’m using fusion 360 to re-create some models I made in OpenSCAD, to make them more ‘organic’and te enable editing in traditional CAD.
However I’ve found no immediate replacement for the tool I currently use to create more organic shapes – hull() {…} – this is like you have an infinitely stretchy bag around all the objects it includes
Here’s an example
$fn=100;
hull()
{
sphere(20);
translate([30,0,0])
cube([20,5,30],center=true);
translate([-10,5,0])
cylinder(40,5,5,center=true);
}
(which gives…)
}
Does anyone know where this function is within Fusion please?
I know there are other ways in Fusion to create shapes – but I need to make an exactly equivalent shape to fit with an OpenSCAD hull.
Cheers
Alex
Can you not use a combination of both? IE create the thing that uses hull in OpenSCAD and then import into fusion 360?
--
You received this message because you are subscribed to the Google Groups "Reading Hackspace" group.
To unsubscribe from this group and stop receiving emails from it, send an email to reading-hackspace+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Ian converted minkowskis and hull constructs into rounded polygons in his OpenSCAD, see this thread;
David
--
You received this message because you are subscribed to the Google Groups "Reading Hackspace" group.
To unsubscribe from this group and stop receiving emails from it, send an email to reading-hacksp...@googlegroups.com.
Ah – been around this loop previously.
What I really need is a 3D version of nophead’s rounded_polygon script. More like ‘rounded_polyhedron’…
This worked fine for Ian because he was dealing with 2D laser/CNC cut parts.
Will ask Nophead very nicely…
Maybe that is why it is called hull?
--
Loft is what you want. It isn't the same as hull, but that's how you do it.
R
To unsubscribe from this group and stop receiving emails from it, send an email to reading-hackspace+unsubscribe@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Reading Hackspace" group.
To unsubscribe from this group and stop receiving emails from it, send an email to reading-hackspace+unsubscribe@googlegroups.com.
Let me know if you figure this out Alex, I want to make a model of a boat hull from the designs. Which are crosssections on 3 axis, some like what you have in openSCAD looks like it would work well.Maybe that is why it is called hull?