teepee changed the topic of #openscad to: OpenSCAD - The Programmers Solid 3D CAD Modeller | This channel is logged! | Website: http://www.openscad.org/ | FAQ: https://goo.gl/pcT7y3 | Request features / report bugs: https://goo.gl/lj0JRI | Tutorial: https://bit.ly/37P6z0B | Books: https://bit.ly/3xlLcQq | FOSDEM 2020: https://bit.ly/35xZGy6 | Logs: https://bit.ly/32MfbH5
<gbruno> [github] kintel pushed 2 modifications (MouseSelection fix: Make context current, manage state) https://github.com/openscad/openscad/commit/cfc6eb12e96e8d2a5fb3858b07ce3c6de5eed6f2
<gbruno> [github] kintel opened pull request #5789 (MouseSelection fix: Make context current, manage state) https://github.com/openscad/openscad/pull/5789
kintel has joined #openscad
<kintel> UltimateCodeWarr Also keep in mind that "deprecated" in this case means it still works, but we issue a warning, to give people some time to port code off that feature. The main annoyance is that people relying on "hardwarnings" will need to turn that off when using deprecated features.
UltimateCodeWarr has quit [Ping timeout: 240 seconds]
<InPhase> kintel: And the UB case, which to be fair to the magnitude of the problem is hit by the poor performance of warning triggering, and rendered way too slow by the flood of warnings without the fix.
<InPhase> kintel: But perhaps we can separately find a performance fix for that.
<InPhase> It really shouldn't bring a computer to its knees to generate a thousand warnings or whatever.
<InPhase> That should be a subsecond task, absent weird bugs.
noonien808310429 has quit [Quit: The Lounge - https://thelounge.chat]
califax has quit [Remote host closed the connection]
califax has joined #openscad
noonien808310429 has joined #openscad
UltimateCodeWarr has joined #openscad
teepee_ has joined #openscad
UltimateCodeWarr has quit [Ping timeout: 240 seconds]
teepee has quit [Ping timeout: 264 seconds]
teepee_ is now known as teepee
<kintel> InPhase Yeah, while it haven't encountered this myself, having a way of reducing lots of repeating warnings would be nice.
<gbruno> [github] kintel closed pull request #5773 (Fix issues #5318 and #5772) https://github.com/openscad/openscad/pull/5773
<gbruno> [github] kintel pushed 5 modifications (Fix issues #5318 and #5772 (#5773)) https://github.com/openscad/openscad/commit/3c1f9e7794fc908b390bccf87040c21bdf7be029
<gbruno> [github] kintel pushed 2 additions 1 modifications 2 removals (Bump manifold. Fixes #5766) https://github.com/openscad/openscad/commit/e8e2a15c605bbb159cc0324dd01ff37fb9de46c7
<gbruno> [github] kintel synchronize pull request #5781 (Bump manifold. Fixes #5766) https://github.com/openscad/openscad/pull/5781
krushia has joined #openscad
mmu_man has quit [Ping timeout: 265 seconds]
krushia has quit [Read error: Connection reset by peer]
J25k81 has joined #openscad
J25k83 has quit [Ping timeout: 240 seconds]
Guest29 has joined #openscad
Guest29 has quit [Client Quit]
UltimateCodeWarr has joined #openscad
kintel has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<UltimateCodeWarr> Are there any libraries to do something like a Concrete Anchor / Ramset tassle :    https://assetcloud.roccommerce.net/w1500-h1500-cpad/_kljack/9/2/10/rs75.jpg
<UltimateCodeWarr> What I need to do is put a sleeve inside of a pipe and I need to make it fit snug
<InPhase> I solved a similar problem for drywall. Not sure what you'd need for the pipe in question. https://www.thingiverse.com/thing:2191927
<othx> InPhase linked to "Customizable Drywall Anchors, Auger-Style by rcolyer" on thingiverse => 4 IRC mentions
<InPhase> The principle of split and widen when a screw is inserted worked quite favorably in broad drywall situations. I personally used it a very large number of times, and it had some very large number of thousands of downloads with lots of favorable feedback. For a pipe maybe you'd consider a different outer surface rather than the auger screw though. Perhaps big conical sawtooth like ridges oriented for
<InPhase> easy insertion and harder removal, and then a similar split that you insert a screw into, to tighten it down.
<InPhase> I bet that could end up in there quite snug with the right parameters.
<InPhase> Note that PLA is somewhat slippery, and might not be the optimal choice. PETG could be a good swap-in.
<UltimateCodeWarr> would be nice to just have some vertical ribs on a cylinder that were spaced every 90 deg or so.  These vertical ribs (like a triangle) protruding out of the cylinder vertical wall would collapse/fold over as the cylinder is being driven into the pipe.    The problem  much pipe you buy as a seam, or might have rust inside making a perfect fit
<UltimateCodeWarr> near impossible.
<UltimateCodeWarr> You don't want it so tight that you can't remove it either.
<InPhase> Well that's the benefit of a screw down the middle. If you remove the screw, you will also loosen it.
<UltimateCodeWarr> I understand what you are saying, but that application wont work.
<UltimateCodeWarr> For the project I need, I need the middle of the cylinder relatively hollow
<InPhase> Fluid flow?
<UltimateCodeWarr> No, the project is a hidden camera on the side of the road
<UltimateCodeWarr> I want to make something that looks like a utilty/telephone pedestal
<UltimateCodeWarr> So I got an old rusty 6" pole
<UltimateCodeWarr> I need to fit a camera on the inside of it.
<UltimateCodeWarr> So I am going to drill a hole in a 6" part of the cap for the camera to look out, but I need to slip some kind of mount inside that cap for the camera.
<InPhase> You might consider using a threading library, and epoxying something to the pipe with outer threads.
<InPhase> Then you can screw into that from above to insert and remove.
<InPhase> You could still aggressively remove the epoxied part with outer threads if necessary, because you can always get stuff off of metal with tools. But for regular removal and insertion, then you have a nice clean screw-it-on process.
<InPhase> Something screwed on securely will not come off in the wind and such.
<UltimateCodeWarr> difference() {
<UltimateCodeWarr>     cylinder(h = 7, d = 152.4, center = false, $fn = 100);
<UltimateCodeWarr>      translate([0, 0, -1])
<UltimateCodeWarr>       cylinder(h = 9, d = 146, center = false, $fn = 100);
<UltimateCodeWarr>     }
<UltimateCodeWarr>   //91 mm high
<UltimateCodeWarr>     translate([0,-22,61])
<UltimateCodeWarr>         rotate([90, 0, 0])
<UltimateCodeWarr>             cylinder(h = 7, d = 122, center = false, $fn = 100);
<UltimateCodeWarr>  translate([0,76,61])
<UltimateCodeWarr>     rotate([90, 0, 0])
<UltimateCodeWarr>        cylinder(h = 91, d = 122, center = false, $fn = 100);
<InPhase> paste?
<othx> paste is https://bpa.st for .scad files and other text like long error reports, https://pasteboard.co/ or https://imgur.com/ for images
<UltimateCodeWarr> https://bpa.st/7HRQ
<UltimateCodeWarr> So the bottom ring is the 6" sleeve
<UltimateCodeWarr> The large solid cylider is the hull of the camera
<UltimateCodeWarr> The smaller thin cylinder is the mount plate
<UltimateCodeWarr> I need to make some sort of screw / telescoping adjustment to push and pull the camera closer to the hole in the sleeve and pipe
<UltimateCodeWarr> It will all be inside a pipe cap
<UltimateCodeWarr> https://bpa.st/IO4A
<InPhase> Securely inside is different from what I envisioned when you started describing this.
<InPhase> You might consider something like a TPU enclosure for it?
<InPhase> The squishiness could give you all the flexibility you need to both insert, and hold it in place, and position it.
<UltimateCodeWarr> Here's a better color coding   https://bpa.st/YZLA
<UltimateCodeWarr> TPU Is a great idea, I think I have a special type for my X1C
<UltimateCodeWarr> Behind the camera mount I want to have some sort of screw jack that can press it up against the hole for a tight seal
<UltimateCodeWarr> Otherwise, the camera will just catch :Charlottes Web Forming
<UltimateCodeWarr> Here's these wedge-ribs I was thinking about:    https://bpa.st/DCUA
feep has quit [Quit: Konversation terminated!]
PaulWay has joined #openscad
pie_ has quit []
pie_ has joined #openscad
UltimateCodeWarr has quit [Quit: Client closed]
stealth_ has quit [Quit: Leaving]
<gbruno> [github] pludi opened pull request #5790 (Update mimalloc to 1.7.9) https://github.com/openscad/openscad/pull/5790
mmu_man has joined #openscad
PaulWay has quit [Ping timeout: 252 seconds]
stefanct has quit [Ping timeout: 244 seconds]
stefanct has joined #openscad
PaulWay has joined #openscad
<gbruno> [github] t-paul pushed 1 modifications (Merge pull request #5790 from pludi/master Update mimalloc to 1.7.9) https://github.com/openscad/openscad/commit/340aab891c36ea00703620a0b078b97acd4225a6
<gbruno> [github] t-paul closed pull request #5790 (Update mimalloc to 1.7.9) https://github.com/openscad/openscad/pull/5790
PaulWay has quit [Ping timeout: 248 seconds]
mmu_man has quit [Ping timeout: 252 seconds]
mmu_man has joined #openscad
L29Ah has left #openscad [#openscad]
mmu_man has quit [Ping timeout: 252 seconds]
mmu_man has joined #openscad
PaulWay has joined #openscad
PaulWay has quit [Ping timeout: 245 seconds]
PaulWay has joined #openscad
Guest92 has joined #openscad
Guest92 has quit [Client Quit]
PaulWay has quit [Ping timeout: 248 seconds]
noonien808310429 has quit [Quit: The Lounge - https://thelounge.chat]
noonien808310429 has joined #openscad
stealth_ has joined #openscad
<gbruno> [github] AnReWi opened issue #5791 (Calculation error) https://github.com/openscad/openscad/issues/5791
<gbruno> [github] t-paul edited issue #5791 (Calculation error) https://github.com/openscad/openscad/issues/5791
<gbruno> [github] kintel closed issue #5791 (Calculation error) https://github.com/openscad/openscad/issues/5791
L29Ah has joined #openscad
ToAruShiroiNeko has quit [Ping timeout: 265 seconds]
To_Aru_Shiroi_Ne has joined #openscad
AdarshGupta has joined #openscad
feep has joined #openscad
AdarshGupta has quit [Quit: Client closed]
teepee_ has joined #openscad
teepee has quit [Ping timeout: 264 seconds]
teepee_ is now known as teepee
Kalpana has joined #openscad
Kalpana has quit [Client Quit]
UltimateCodeWarr has joined #openscad
Larinioides has quit [Quit: Client closed]
Guest57 has joined #openscad
<Guest57> Hi, Can you assign Integrated Language help feature to me? I know c++ pretty well, although I only did little qt dev just to try it out on small projects. But I can learn it.
<teepee> hi Guest57
<teepee> assigning the project is not how GSoC works
<teepee> the first step is creating a full project proposal based on the idea page listing the general topic
MP69 has joined #openscad
Guest57 has quit [Quit: Client closed]
<UltimateCodeWarr> Forgot that command where if you want to show a ghosted image of what you are about to cut away... something like % or ..
<teepee> #
<UltimateCodeWarr> teepee thx!
MP69 has quit [Quit: Client closed]
L29Ah has left #openscad [#openscad]
<gbruno> [github] kintel pushed 2 modifications (MouseSelection fix: Make context current, manage state) https://github.com/openscad/openscad/commit/a81fc39383ced35dcd8f6008f1d1575a4dbecd97
<gbruno> [github] kintel synchronize pull request #5789 (MouseSelection fix: Make context current, manage state) https://github.com/openscad/openscad/pull/5789
pah is now known as pa
Jerr has quit [Read error: Connection reset by peer]
Jerr1 has joined #openscad
mmu_man has quit [Ping timeout: 252 seconds]
mmu_man has joined #openscad
drkow has quit [Quit: Leaving]
drfff has joined #openscad
<gbruno> [github] damienmarchal edited pull request #5788 (Factorize common code in mainwindow) https://github.com/openscad/openscad/pull/5788
UltimateCodeWarr has quit [Ping timeout: 240 seconds]
<gbruno> [github] damienmarchal synchronize pull request #5788 (Factorize common code in mainwindow) https://github.com/openscad/openscad/pull/5788
linext has joined #openscad
<gbruno> [github] damienmarchal converted_to_draft pull request #5787 ([WIP] Refactor activeEditor) https://github.com/openscad/openscad/pull/5787
<gbruno> [github] damienmarchal edited pull request #5787 (Refactor access to activeEditor in MainWindow.) https://github.com/openscad/openscad/pull/5787
UltimateCodeWarr has joined #openscad
L29Ah has joined #openscad
ronqui has joined #openscad
<ronqui> What is keeping openscad from releasing a new stable release for the last 4 years
<InPhase> Epic progress overload. I think it's getting close. :)
<InPhase> I didn't try the first two cross-platform releases, 2013 or 2014, having started with 2015, but I'd wager that the upcoming release minus the last release is probably the biggest delta it has had yet.
drfff has quit [Read error: Connection reset by peer]
linext has quit [Quit: Client closed]
drfff has joined #openscad
marcus has quit [Remote host closed the connection]
marcus has joined #openscad
drfff has quit [Ping timeout: 244 seconds]
PaulWay has joined #openscad
yogadude has quit [Ping timeout: 268 seconds]
krushia has joined #openscad
JakeSays_ has joined #openscad
JakeSays has quit [Ping timeout: 265 seconds]
JakeSays_ is now known as JakeSays
PaulWay has quit [Ping timeout: 245 seconds]
<ronqui> That's big