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
bitbasher has quit [Ping timeout: 272 seconds]
mmu_man has quit [Ping timeout: 268 seconds]
LordOfBikes has quit [Ping timeout: 276 seconds]
LordOfBikes has joined #openscad
snaked has joined #openscad
howiemnt4 has quit [Remote host closed the connection]
howiemnt4 has joined #openscad
J25k48 has joined #openscad
J25k58 has quit [Ping timeout: 240 seconds]
howiemnt4 has quit [Remote host closed the connection]
howiemnt1 has joined #openscad
<gbruno> [github] kintel edited pull request #5914 (Update manifold to 3.1.0) https://github.com/openscad/openscad/pull/5914
<gbruno> [github] kintel edited pull request #5914 (Update manifold to 3.1.0) https://github.com/openscad/openscad/pull/5914
J25k48 has quit [Quit: Client closed]
J25k48 has joined #openscad
TheAssassin has quit [Remote host closed the connection]
TheAssassin has joined #openscad
sculptor has quit [Ping timeout: 244 seconds]
germ has quit [Ping timeout: 276 seconds]
germ has joined #openscad
TheAssassin has quit [Remote host closed the connection]
TheAssassin has joined #openscad
TheAssassin has quit [Remote host closed the connection]
TheAssassin has joined #openscad
J25k48 has quit [Quit: Client closed]
J25k48 has joined #openscad
TheAssassin has quit [Remote host closed the connection]
TheAssassin has joined #openscad
Guest95 has joined #openscad
<Guest95> hi ^^
<Scopeuk> Hi
<Guest95> do you still use openSCAD?
Guest95 has quit [Quit: Client closed]
J25k48 has quit [Quit: Client closed]
J25k48 has joined #openscad
little_blossom has quit [Ping timeout: 252 seconds]
J25k48 has quit [Quit: Client closed]
J25k48 has joined #openscad
mmu_man has joined #openscad
J25k48 has quit [*.net *.split]
TheAssassin has quit [*.net *.split]
teepee has quit [*.net *.split]
fling has quit [*.net *.split]
aiyion2 has quit [*.net *.split]
califax has quit [*.net *.split]
GNUmoon has quit [*.net *.split]
stealth_ has quit [Quit: Leaving]
dalias has quit [Ping timeout: 260 seconds]
<buZz> 'still' :D
little_blossom has joined #openscad
dalias has joined #openscad
dalias has quit [Ping timeout: 244 seconds]
snaked has quit [Quit: Leaving]
dalias has joined #openscad
L29Ah has left #openscad [#openscad]
califax has joined #openscad
TheAssassin has joined #openscad
teepee has joined #openscad
weeber has joined #openscad
fling has joined #openscad
aiyion2 has joined #openscad
<Scopeuk> yeh, I saw the message after I left
bitbasher has joined #openscad
Guest45 has joined #openscad
<Guest45> Hello,
<Guest45> I need to develop a customize utilities for converting 3d (.stl file to .shp).
<Guest45> I have input .stl file format and output is .shp (first preference) or .dxf if .shp is not possbile.
<Guest45> I have different different stl every time. if needed I will provide you file for study.
<Guest45> Thanks
<Guest45> Chirag
<buZz> whats a shp file?
<buZz> oh a 2D vector by esri?
<buZz> openscad has some projection methods for converting 3d to 2d but its not really a 'mesh editor' so its not really suitable for what you describe i guess
<gbruno> [github] kintel closed issue #5944 (Can't build macOS release locally.) https://github.com/openscad/openscad/issues/5944
<buZz> Guest45: whats the intended purpose specifically?
<buZz> i mean, why do you need a 2D vector of a 3dbenchy.stl :D
Guest45 is now known as ChiragDesai884
<ChiragDesai884> check this link we need outline from stl
<ChiragDesai884> shp file is shape file for laser cutting
<buZz> was literally first googlehit on 'openscad 3d projection'
<ChiragDesai884> thanks for sharing, I reader it now and its ok but I need utilities that convert automatically outline of stl given. I have multiples file in a day so can do it one by one manually. hope you understand it.  kindly go through below link https://jmp.sh/s/VERxn0KW5z3ydXx4MM4c
<buZz> you can make that yourself, openscad supports commandline operation
<buZz> i'm not going to do your homework :D
<buZz> openscad also has python bindings
<ChiragDesai884> I need that in .shp file or in .dxf (in Polyline only) file format.
<buZz> cool, enjoy!
<buZz> openscad supports dxf as you just read on that page
<ChiragDesai884> below is shp file format
<ChiragDesai884> @Var S,Scale,%,100,,,10
<ChiragDesai884> @Node O,O,0,0
<ChiragDesai884> SetOrigin(O.X,O.Y,O.Z)
<ChiragDesai884> @Node RU,RU,0.039250*S,0.026164*S
<ChiragDesai884> S=Distance2P(O,RU)/0.047
<ChiragDesai884> SetRotation(Angle2P(O,RU)-0.588)
<ChiragDesai884> @Node LU,LU,-0.039250*S,0.026164*S
<ChiragDesai884> S=Distance2P(O,LU)/0.047
<ChiragDesai884> SetRotation(Angle2P(O,LU)-2.554)
<ChiragDesai884> @Node LD,LD,-0.039250*S,-0.026164*S
<ChiragDesai884> S=Distance2P(O,LD)/0.047
<ChiragDesai884> SetRotation(Angle2P(O,LD)--2.554)
<ChiragDesai884> @Node RD,RD,0.039250*S,-0.026164*S
<ChiragDesai884> S=Distance2P(O,RD)/0.047
<buZz> ChiragDesai884: WE KNOW ALREADY
<ChiragDesai884> SetRotation(Angle2P(O,RD)--0.588)
<ChiragDesai884> @Curvecalc
<ChiragDesai884> Dummy=1
<ChiragDesai884> @Curve Cutting1,0,0,Girdle
<ChiragDesai884> ArcXYA(-0.017625*S,0.019416*S,-0.039242*S,0.019994*S,1.412)
<buZz> ffs, spammer
<buZz> SHP file is by esri, its GIS cad stuff
<buZz> you can totally ; write a tool that takes 1 or more STLs as input, uses OpenSCAD and some script YOU wrote to turn it into a 2D projection and export it to DXF
<buZz> you cant expect anyone here to write that for you :D
<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
<InPhase> ChiragDesai884: ^ Put pastes there rather than pasting directly into the channel.
<buZz> you can ask us how a knife works or how to hold it, but not to cut your meat for you
<InPhase> And yeah, advice is free. OpenSCAD is a hobby for most of us that we are passionate about helping people to use and design things with. Specific and involved "do my project please" work might require offering appropriate contractor rates and finding someone willing to take on a project at those rates. :)
<ChiragDesai884> Bro I am not a programmer I am beginner and learning and trying. So my direct question is can anyone help me out? it's a paid job
<ChiragDesai884> Bro's I am not a programmer I am beginner and learning and trying. So my direct question is can anyone help me out? it's a paid job
<buZz> this is even weirder :D why would you take a paid assignment for writing software when you cant write software :D
<InPhase> ChiragDesai884: Do you have the backing of a good budget to offer for people to work on this? It sounds doable, but it would take some time to sort out what's involved. It doesn't look like a quick cheap project to me, but it looks achievable. First glance it looks like the sort of project where if you have a budget in the thousands of dollars to work with, you can probably get it done pretty
<InPhase> straightforwardly by hiring someone to help out with it. If your budget is under a thousand dollars, that sounds less likely to me.
<buZz> oh sure, if the question is 'who can i rent for this job' :D
<buZz> just havent really seen that :D
<ChiragDesai884> Ok I will try it first and then I will find someone if needed
<ChiragDesai884> thanks all for supporting. Thank You for valuable time, if you want to connect me on Team: chiragdesai884
fling has quit [Remote host closed the connection]
fling has joined #openscad
ChiragDesai884 has quit [Quit: Client closed]
<buZz> on what?
<gbruno> [github] lgarron synchronize pull request #5942 (Add a `name` parameter to `group(&) {}` that is used to name objects in exported `.3mf` files (when using `lazy-union`)) https://github.com/openscad/openscad/pull/5942
<buZz> oooo nice
<buZz> naming objects inside files works kinda cool with some slicers
<buZz> where you can then select to print only parts
<buZz> or parts in different filament
<buZz> helps a lot from 'group 1' 'group 2' etc
fling has quit [Ping timeout: 244 seconds]
<gbruno> [github] kintel pushed 1 modifications (Update test with new triangulation) https://github.com/openscad/openscad/commit/48448677997e9673ec4bb75d4c0ab67ac12a0fe7
<gbruno> [github] kintel synchronize pull request #5914 (Update manifold to 3.1.0) https://github.com/openscad/openscad/pull/5914
<gbruno> [github] kintel pushed 1 modifications (Update test with new triangulation) https://github.com/openscad/openscad/commit/c739a7e176212fd91f1aa609e3a371a7fa7e4441
<gbruno> [github] kintel synchronize pull request #5914 (Update manifold to 3.1.0) https://github.com/openscad/openscad/pull/5914
sculptor has joined #openscad
sculptor has quit [Changing host]
sculptor has joined #openscad
sculptor has quit [Read error: Connection reset by peer]
sculptor has joined #openscad
bitbasher has quit [Ping timeout: 265 seconds]
weeber has quit [Ping timeout: 268 seconds]
mwette has joined #openscad
califax has quit [Remote host closed the connection]
<gbruno> [github] kintel edited pull request #5914 (Update manifold to 3.1.0) https://github.com/openscad/openscad/pull/5914
<gbruno> [github] kintel edited pull request #5914 (Update manifold to 3.1.1) https://github.com/openscad/openscad/pull/5914
califax has joined #openscad
<gbruno> [github] kintel closed pull request #5914 (Update manifold to 3.1.1) https://github.com/openscad/openscad/pull/5914
<gbruno> [github] kintel pushed 5 additions 7 modifications (Update manifold to 3.1.1 (#5914)) https://github.com/openscad/openscad/commit/65856c9330f8cc4ffcaccf03d91b4217f2eae28d
<gbruno> [github] kintel closed issue #5738 (Manifold render test failure: example017) https://github.com/openscad/openscad/issues/5738
<gbruno> [github] kintel edited issue #5940 (Make CMake 4 work everywhere) https://github.com/openscad/openscad/issues/5940
califax has quit [Remote host closed the connection]
califax has joined #openscad
mmu_man has quit [Ping timeout: 248 seconds]
<gbruno> [github] pozix604 opened issue #5951 (Window decorations jiggle with OpenSCAD in Linux Gnome) https://github.com/openscad/openscad/issues/5951
L29Ah has joined #openscad
<gbruno> [github] kintel pushed 1 modifications (Disable two more tests exhibiting test fighting) https://github.com/openscad/openscad/commit/510c6a87075be97945b739290a79cd435c5ba238
<gbruno> [github] kintel opened pull request #5952 (Disable test with z-fighting) https://github.com/openscad/openscad/pull/5952
<gbruno> [github] pozix604 closed issue #5951 (Window decorations jiggle with OpenSCAD in Linux Gnome) https://github.com/openscad/openscad/issues/5951
teepee_ has joined #openscad
teepee has quit [Ping timeout: 244 seconds]
teepee_ is now known as teepee
califax has quit [Remote host closed the connection]
<gbruno> [github] kintel pushed 1 modifications (Disable two more tests exhibiting test fighting) https://github.com/openscad/openscad/commit/5b53712ead6e6835ec369ec23a9445c7bda72367
<gbruno> [github] kintel synchronize pull request #5952 (Disable test with z-fighting) https://github.com/openscad/openscad/pull/5952
califax has joined #openscad
califax has quit [Remote host closed the connection]
califax has joined #openscad
sculptor_ has joined #openscad
sculptor_ has quit [Changing host]
sculptor_ has joined #openscad
sculptor_ is now known as sculptorr
sculptor has quit [Ping timeout: 272 seconds]
<gbruno> [github] kintel closed pull request #5952 (Disable test with z-fighting) https://github.com/openscad/openscad/pull/5952
<gbruno> [github] kintel pushed 1 modifications (Disable two more tests exhibiting test fighting (#5952)) https://github.com/openscad/openscad/commit/53767d7ab60a83eb45338f3b5c46ed91f55d625e
mwette has quit [Ping timeout: 252 seconds]
mmu_man has joined #openscad
<gbruno> [github] kintel pushed 1 modifications (Always show 3D print dialog if no print service was selected, as the shift-click function has low discovery) https://github.com/openscad/openscad/commit/7ad6b22287db509e86bacf9cabd996019b74f1f8
<gbruno> [github] kintel opened pull request #5953 (Always show 3D print dialog if no print service was selected) https://github.com/openscad/openscad/pull/5953
sculptorr has quit [Ping timeout: 276 seconds]
stealth_ has joined #openscad
mmu_man has quit [Ping timeout: 268 seconds]
mmu_man has joined #openscad
mmu_man has quit [Ping timeout: 265 seconds]
<gbruno> [github] kintel closed pull request #5953 (Always show 3D print dialog if no print service was selected) https://github.com/openscad/openscad/pull/5953
<gbruno> [github] kintel pushed 1 modifications (Always show 3D print dialog if no print service was selected, as the shift-click function has low discovery (#5953)) https://github.com/openscad/openscad/commit/235184ac5a29c1ec2b1f3315498e0017ff506658
mmu_man has joined #openscad
foul_owl has quit [Ping timeout: 272 seconds]
mmu_man has quit [Ping timeout: 276 seconds]
rawgreaze has quit [Quit: ZNC 1.9.1 - https://znc.in]
foul_owl has joined #openscad
rawgreaze has joined #openscad
mmu_man has joined #openscad
L29Ah has quit [Read error: Connection reset by peer]
L29Ah has joined #openscad
weeber has joined #openscad
weeber has quit [Quit: Lost terminal]
mmu_man has quit [Ping timeout: 265 seconds]
<gbruno> [github] kintel pushed 1 modifications (Bugfix: Cairo accidentally fell out) https://github.com/openscad/openscad/commit/016cf28ec30c561781c2e72075e37f34b94ba685
<gbruno> [github] kintel opened pull request #5954 (Bugfix: Cairo accidentally fell out) https://github.com/openscad/openscad/pull/5954
<gbruno> [github] kintel closed pull request #5954 (Bugfix: Cairo accidentally fell out) https://github.com/openscad/openscad/pull/5954
<gbruno> [github] kintel pushed 1 modifications (Bugfix: Cairo accidentally fell out (#5954)) https://github.com/openscad/openscad/commit/eeeb1c191c5d5c90b8ec05bc3525bc1bca29b505
mmu_man has joined #openscad
<gbruno> [github] kintel edited issue #5940 (Make CMake 4 work everywhere) https://github.com/openscad/openscad/issues/5940
sparsh-n has joined #openscad
sparsh-n has quit [Client Quit]