Search found 4 matches

by SRCAD
Mon Nov 20, 2017 4:10 pm
Forum: Python scripting and macros
Topic: Improving performance embossing from picture
Replies: 2
Views: 641

Improving performance embossing from picture

I wanted to emboss a picture on a surface from a picture. I did so, but the performance is very poor (around 30x30 takes hours, 176x110 has taken 36 hours so far). I'm doing it by creating a box for each pixel then fusing them all together. Sure, there are 20K boxes (well, 40K since I have to do it ...
by SRCAD
Mon Nov 20, 2017 4:05 pm
Forum: Python scripting and macros
Topic: Extruding along a 3D path (Solved!)
Replies: 11
Views: 3389

Re: Extruding along a 3D path (Solved)

Thanks Chris_G, both of your techniques worked great! I imagine I understand what a ruled surface is (I have not stumbled on a good definition of it in my quick searches) and so in my imagination it makes sense that it would work. I'll keep it in the back of my mind the next time I need that sort of...
by SRCAD
Mon Nov 20, 2017 3:47 pm
Forum: Python scripting and macros
Topic: Extruding along a 3D path (Solved!)
Replies: 11
Views: 3389

Re: Extruding along a 3D path

My apologies, I tried to update my post last night with the necessary information but it was held or something so I couldn't do it. I'll take a look at your suggested code and give it a try. Ruled surfaces. Hmm. I didn't research what those were when I saw passing references to them. OS: "Fedor...
by SRCAD
Mon Nov 20, 2017 3:35 am
Forum: Python scripting and macros
Topic: Extruding along a 3D path (Solved!)
Replies: 11
Views: 3389

Extruding along a 3D path (Solved!)

I have a 2D shape that I would like to extrude along a 3D path. I tried a number of methods, and nothing worked. I've created a wireframe of the 3D object, but I seemingly cannot create faces that are not along planes. I tried makePipeShell and makeLoft (possibly incorrectly) but the resulting objec...