Search results for all lists

10000 messages found
Sort by
List: discuss@lists.openscad.org
From: Sanjeev Prabhakar
 
Re: python support for openscad
Sun, Jul 23, 2023 4:59 PM
let is created: > > calculations for this are done in python. > > That is great stuff, but in my view it would belong into the geometry > engine. > > Maybe you can help with the calculation side of that? > > ciao, > Torsten. > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
List: discuss@lists.openscad.org
From: Rogier Wolff
 
Re: python support for openscad
Sun, Jul 23, 2023 5:03 PM
case of "a fillet" is something that might be welcome in openscad. But that is not the point that Sanjeev is trying to make. There are manythings that are relatively easy to do in python-enhanced-openscad, that are hard to do in vanilla openscad. Not just fillets. His example might make sense to "Oh, but we want that to be possible in plain openscad". You can't keep saying that for everything that anybody can come up with. Roger. -- ** R.E.Wolff@BitWizard.nl ** https://www.BitWizard.nl/ ** +31-15-2049110 ** ** Delftechpark 11 2628 XJ Delft, The Netherlands. KVK: 27239233 ** f equals m times a. When your f is steady, and your m is going down your a is going up. -- Chris Hadfield about flying up the space shuttle.
List: discuss@lists.openscad.org
From: Torsten Paul
 
Re: python support for openscad
Sun, Jul 23, 2023 5:04 PM
he information which vertices are that intersection line. Maybe we can try some demo code separate from OpenSCAD to see if we can get your algorithm into Manifold based C++ code. ciao, Torsten.
List: discuss@lists.openscad.org
From: Rogier Wolff
 
Re: python support for openscad
Sun, Jul 23, 2023 5:10 PM
s = 3; dist = 10; size = 10; fillet (radius= fillet_radius) { cube ([size*2+dist, size, size]); cube ([size, size, 2*size]); translate ([size+dist, 0,0]) cube ([size, size, 2*size]); } Easy. But what if dist is reduced to below 2*fillet_radius ? You can intersect the radii but then you'll get a sharp inside corner that the fillet is supposed to be preventing. And what if dist is reducted to below 1*fillet_radius ? Does the space between the objects fill completely with fillet? In the general case, this is quite hard. Roger. -- ** R.E.Wolff@BitWizard.nl ** https://www.BitWizard.nl/ ** +31-15-2049110 ** ** Delftechpark 11 2628 XJ Delft, The Netherlands. KVK: 27239233 ** f equals m times a. When your f is steady, and your m is going down your a is going up. -- Chris Hadfield about flying up the space shuttle.
List: discuss@lists.openscad.org
From: Torsten Paul
 
Re: python support for openscad
Sun, Jul 23, 2023 5:11 PM
ps://github.com/openscad/openscad/pull/4702 Getting builds to enable this feature is going to be a challenge, as I mentioned before, but we'll have to see if we can get some help with that. ciao, Torsten.
List: discuss@lists.openscad.org
From: Sanjeev Prabhakar
 
Re: python support for openscad
Sun, Jul 23, 2023 5:13 PM
List: discuss@lists.openscad.org
From: Sanjeev Prabhakar
 
Re: python support for openscad
Sun, Jul 23, 2023 4:34 PM
learn and use language as per me. > > Is probably not more than 2 years that I started learning python. I > wouldn't call myself proficient in the language but at the least I could > make few very complicated models through this. > > > >
List: discuss@lists.openscad.org
From: Torsten Paul
 
Re: python support for openscad
Sun, Jul 23, 2023 4:45 PM
List: discuss@lists.openscad.org
From: William F. Adams
 
Re: python support for openscad
Sun, Jul 23, 2023 3:23 PM
pasting links w/o commentary: https://old.reddit.com/r/shapeoko/wiki/programming#wiki_python What would you like to do using what approach that OpenSCAD isn't working for? I suspect that there's a feature of the language you aren't using which will address it elegantly. William
List: discuss@lists.openscad.org
From: Sanjeev Prabhakar
 
Re: python support for openscad
Sun, Jul 23, 2023 4:07 PM