Welcome! Log In Create A New Profile

Advanced

open scad cylinder which has different centers for extremities ?

Posted by moltean 
open scad cylinder which has different centers for extremities ?
June 24, 2013 10:17AM
how can I create a cylinder which has different XY centers at extremities ?

the basic instruction will create a cylinder which has the same XY center for both extremities.

but how, for instance can I create a cylinder which has the center from base at [0,0] and the center from top at [10, 10] ?

actually I want to create a cone which has this property .... how this shape can be created in OpenSCAD ?

thanks,
mihai
Re: open scad cylinder which has different centers for extremities ?
June 24, 2013 10:36AM
something like that?
hull() {
	translate([10,10,5]) cylinder(h= 0.01, r=10);
	cylinder(h= 0.01, r=20);
 }
Re: open scad cylinder which has different centers for extremities ?
June 24, 2013 10:39AM
yes, something like that ...

thanks,
mihai


kgrjxy Wrote:
-------------------------------------------------------
> something like that?
>
> hull() {
> translate([10,10,5]) cylinder(h= 0.01, r=10);
> cylinder(h= 0.01, r=20);
> }
>
Sorry, only registered users may post in this forum.

Click here to login