discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Offset when using linear extrude

G
Gadgetmind
Sun, Nov 18, 2018 6:09 PM

Hi,

I have vague memories of seeing someone trying to add offset/delat to
linear extrude and now have an idea that could really make use of this.

Did it go anywhere? Is it available in a build?

Thanks

Ian

Hi, I have vague memories of seeing someone trying to add offset/delat to linear extrude and now have an idea that could really make use of this. Did it go anywhere? Is it available in a build? Thanks Ian
TP
Torsten Paul
Sun, Nov 18, 2018 6:15 PM

On 18.11.18 19:09, Gadgetmind wrote:

I have vague memories of seeing someone trying to add offset/delat
to linear extrude and now have an idea that could really make use
of this.

Did it go anywhere? Is it available in a build?

It's not in any automatic build right now, the source and discussion
is at https://github.com/openscad/openscad/pull/2079

ciao,
Torsten.

On 18.11.18 19:09, Gadgetmind wrote: > I have vague memories of seeing someone trying to add offset/delat > to linear extrude and now have an idea that could really make use > of this. > > Did it go anywhere? Is it available in a build? > It's not in any automatic build right now, the source and discussion is at https://github.com/openscad/openscad/pull/2079 ciao, Torsten.
G
Gadgetmind
Mon, Nov 19, 2018 9:05 AM

On 18/11/18 18:15, Torsten Paul wrote:

It's not in any automatic build right now, the source and discussion
is at https://github.com/openscad/openscad/pull/2079

Thanks. Is this now in mainline or on a branch?

I guess I need to start plugging away at building it from source.

Ian

On 18/11/18 18:15, Torsten Paul wrote: >> > It's not in any automatic build right now, the source and discussion > is at https://github.com/openscad/openscad/pull/2079 Thanks. Is this now in mainline or on a branch? I guess I need to start plugging away at building it from source. Ian
TP
Torsten Paul
Mon, Nov 19, 2018 10:20 AM

On 19.11.18 10:05, Gadgetmind wrote:

Thanks. Is this now in mainline or on a branch?

It's in a forked repo. Github suggests the following commands
to get the code based on master which currently will create
a code conflict:

git checkout -b mrkmg-linear_extrude_offset master
git pull https://github.com/mrkmg/openscad.git linear_extrude_offset

As alternative, it would be possible to get that repo directly.

ciao,
Torsten.

On 19.11.18 10:05, Gadgetmind wrote: > Thanks. Is this now in mainline or on a branch? > It's in a forked repo. Github suggests the following commands to get the code based on master which currently will create a code conflict: git checkout -b mrkmg-linear_extrude_offset master git pull https://github.com/mrkmg/openscad.git linear_extrude_offset As alternative, it would be possible to get that repo directly. ciao, Torsten.
P
Parkinbot
Fri, Nov 23, 2018 11:30 AM

If you have an affine description of the 2D polygon, you can always use a
sweep() to emulate any linear_extrude operation. As far as I know current
sweep implementations don't support 2D polygons with holes. But in this case
you still can sweep the primitives and do all the Boolean stuff in 3D.

--
Sent from: http://forum.openscad.org/

If you have an affine description of the 2D polygon, you can always use a sweep() to emulate any linear_extrude operation. As far as I know current sweep implementations don't support 2D polygons with holes. But in this case you still can sweep the primitives and do all the Boolean stuff in 3D. -- Sent from: http://forum.openscad.org/