Lots of hours on toolpaths...

[attachment file=“120309”]

The three fluted mill.

Single flute top (source: V1 shop)

10 degree carving bit bottom (source: somewhere in China)

 

Seems ESTLCAM is a bit underrated, and it’s pretty easy to use also. I ended up buying the license, as I have major OCD and can’t stand waiting on anything. I also try to support guys like Christian when I can, I’m sure he put a lot of work into ESTLCAM. Nice looking plaque BTW. I’m looking to try that same carving on one of the US flags I’ve been making, I hope my detail comes out as good, but I dont think I’d have the patience to use such a small bit and wait that long. Lol
Cheers​:beers::sunglasses:

3 Likes

I ended up buying ESTLCAM also. I’m in agreement with you - I’d much rather give my money to a small or independent developer. And ESTLCAM is underrated, though the program desperately needs some polish and perhaps a few features added to round it out. Don’t get me wrong, it does what it says it will do, but the shape detection and manual tool path layout options are painfully lacking. It also REALLY needs some Ctrl-Z support! I can’t tell you how many times I’ve accidentally deleted the wrong toolpath after spending 20 minutes or more tracing out a tricky toolpath that the shape detection won’t pick up.

I’m a programmer myself, so I know that these aren’t necessarily small things to implement, but it would go a long way to making the program feel more finished and certainly less frustrating to use. That being said, I haven’t run across a CAM program that is as straight-forward and verbose (tooltips) as ESTLCAM.

I’ve since refined the toolpaths that I use to make these - pocketing certain areas with a flat endmill first and then hitting it with the engraving bit. Recouped a lot of time that way. Unfortunately the wood that I’ve been using is hit or miss with regard to whether or not the smaller details cut properly or chip and tear off. I’m on the search for a more consistent medium than what I’ve been using. So far pine and poplar have both proved to be poor choices.

2 Likes

For me personally, the only 2 things that would speed up my process would be a way to automatically center my stock to my work area, just for spacing certain things, and a way to ungroup svg’s and actually delete parts of anything I import. You can do this on Carbide Create, but I’m unable to get a gcode file that will work GRBL. This may be totally user error TBH. It adds a few more steps, but I create certain things in Carbide Create, then export it as a SVG, and then import to ESTLCAM for my toolpaths. I will probably pick up another UNO today and see if I can get the controller on ESTLCAM to work.:thinking:

1 Like

The geometry to do all of that must be infuriating, and for the most part, it has worked perfectly. There hasn’t been any cases that I can remember of Estlcam doing a shape terribly wrong. It does sometimes fail to find a complete shape, but the manual controls are easy enough. I never had to find a youtube tutorial for that, for example. I think Christian cares a lot, and it shows. I think the UI is simple, and effective. If there were a lot more UI features, that would mean more mistakes, more documentation needed, etc. At least, that’s what I tell myself. I wish it was written in something more platform indepentdent. Undo would be nice, and a quit button in the menu would make my life easier (I hide my close buttons in my windows manager, but that’s pretty unique).

2 Likes

Alt-F4 doesn’t close the program? I know it does in windows and I was pretty sure it worked the same in most linux desktops - though I still spend far more time in windows than linux.

For the record - I really don’t mean to bag on Christian or his software. I bought the license and that removed a HUGE amount of the frustration of using the program. Where I run into the most aggravations is generally not the fault of the software - it’s from using poorly made vector images that don’t have connecting nodes where they need to be, which causes the shape detection to get a little carried away.

That undo feature you talked about though? Man, that would save me HUGE amounts of time - I’m constantly hitting Ctl-Z only to remember, “Oh, yeah, no safety net!” I really do like the software or I wouldn’t have paid for it. I hope Christian continues development of it. Another neat feature would be the ability to override the tool attributes (stepover, feedrate, etc) at the tool path level. That way you could avoid the need to create a whole new tool record for the same cutter just to get a different behavior for the same tool. Would also preclude the need to manually edit out the M00s from the final gcode file. I could go on all day about little things here and there that I’d love to change (and very well might, if the source code were accessible), but the proof is in the pudding - I’m still using Estlcam and will continue to do so until it stops working for me.

1 Like

@christian-knuell we demand an undo function for your amazing program!!! Seriously though an undo using control-z would be an awesome feature and estlcam is completely underrated. Your STL features has done wonders for my topo maps so thank you.

1 Like

I use i3wm, which lets me do whatever terrible things I want to do to myself. Including not mapping alt+F4, and hiding the decorations, so there is no X. The main reason I’d like quit is just because I keep one hand on the mouse in Estlcam, and I don’t want to go back to the keyboard to quit. It really is just for me, really.

I’ve wanted to try the 3d carve feature and have started to time and again only to figure out a more efficient way for the cuts that I needed done. Do you have any examples of some of your work that you’ve done where you’ve used it?

So, so far I have only done topographic maps which I have found it to really excel at due to some the STL files I have being 650 mb and I’m doing it on a VM on my mac. Christian on his videos for STLs shows huge gummy bear mold.

here is one I made:

Here is a yellowstone topo that I have made.

I plan on doing more but the project list is so long!

Yeah, Ctrl+z is the absolute missing feature in Estlcam. It would make things much better if it was available…
I always screw up once designing paths, so it’s a real pain to have to start all over again.
Not sure why it doesn’t have this function, all the other programs I use have it so you wouldn’t think it’s that complicated.

you wouldn’t think it’s that complicated

From a code standpoint, it requires storing every action the user takes and the state of the project before and or after every step. It’s not quite as straight forward as you might think. That’s likely why it’s not in the software already. Most of the software I’ve written doesn’t have an undo feature either, just because implementation can be cumbersome and time consuming. That being said, most of the software I’ve written hasn’t been quite as ambitious as Estlcam.

1 Like

This is beautiful work. It seems I’ll have to take a harder look at that feature.

1 Like

Yeah, and depending on how the code is structured, it may be that toolpath objects quickly lose their original “low memory” origins and are just large objects with tons of vertices. If that is the case, undo can make large copies of them, even if you don’t use the feature. If it was important to support from the start, then it would probably have not been any worse, but adding it later may be a major refactor.

I suck at coding so I clearly don’t know how difficult this is (but I do understand what you just said and I’ve also red what Christian said about it in an other thread). I suppose it implies to store each action you’ve done at each point, which sounds like being difficult and memory bloating. But I think we don’t need a ton of undos, just being able to go one or two steps backwards would be great already, most of the time we need undo for having misclicked on something and we realize it instantly.

Anyway sorry to the OP for the digression and kudos for the really great work that he did, that’s a really nice carving

I have found you can usually select and delete things you’ve misclicked which takes the place of undo without the overhead.

Yeah, that’s ok for small paths, but when you’ve spent 10 minutes working on a complicated one you kinda hesitate hitting the delete buttn :wink:

1 Like

when you’ve spent 10 minutes working on a complicated one you kinda hesitate hitting the delete buttn

Yeah that. And no apology needed - though I think this thread has hit something of a tangent lol

Nice work on the plaque.

My avatar is estcam 3d carve in 2 halves