Gcodetools - Inkscape's CAM extension
Because engraving is done by separate function. You can always join generated Gcode, for example you can use:
cat gcode1.ngc gcode2.ngc > result ngc
To change the sequence just change the order of paths in the imaginary Z axis of inkscape so the paths that are above others will be cut first. (And you also will need to turn off autosorting paths to reduce rapid distance)
Please Log in or Create an account to join the conversation.
Yes it's possible except Engraving.
Because engraving is done by separate function. You can always join generated Gcode, for example you can use:
cat gcode1.ngc gcode2.ngc > result ngc
To change the sequence just change the order of paths in the imaginary Z axis of inkscape so the paths that are above others will be cut first. (And you also will need to turn off autosorting paths to reduce rapid distance)
Question on your gcode.lang file for GEdit. I got this and like it. Thank you!
When I load a *.NC file it doesn't automatically pull up the gcode language, I have to manually go from Plain Text to the gcode language option. Is there a way to make this work automatically? I noticed that .C files automatically pull up the proper language in GEdit.
Please Log in or Create an account to join the conversation.
What is your file's exact extension .NC or .nc? In Linux letters's case does matter.
<metadata>
<property name="mimetypes"></property>
<property name="globs">*.nc;*.ngc</property>
<property name="block-comment-start">(</property>
<property name="block-comment-end">)</property>
</metadata>
Please Log in or Create an account to join the conversation.
<language id="gcode1" _name="Gcode1" version="2.0" _section="Others">
<metadata>
<property name="mimetypes"></property>
<property name="globs">*.nc;*.ngc;*.ncd;*NCD</property>
<property name="block-comment-start">(</property>
<property name="block-comment-end">)</property>
</metadata>
I added my file type as shown in the code block above "*.ncd" however it doesn't work to change the language automatically. If I save as .nc first then change to .ncd however it will stay as GCode for the language. Then if I change the same file to .C it shows C as the language. So it is reading, but for some reason it won't change from plain text to Gcode by just the name .ncd unless I save first as .nc.
btw My name is Nick as well and same spelling for the full first name. In the US, not many are Nicolas. Most have an 'H'. I always get my name mis-spelled here. Maybe I should move to Russia
After all that's the way it sounds right? It's Ni(k)olas in the pronunciation; not Ni (ch) olas... right!
Please Log in or Create an account to join the conversation.
PS Russian official spelling of my full name in English will be Nikolay, so short name could be Nik, but I prefer Nick
Please Log in or Create an account to join the conversation.
by the way, the reason I searched for a GCode lang file for GEdit was because I ended up ruining a good blank by having a comment parentheses backwards to ) at the beggining instead of ( and it actually cut where it was supposed to be a comment. Ouch!! So, thanks for your work!
Aside does your .lang file work in JEdit? I like the JDiff compare feature. Alternatively do you know of a good built in compare plugin for GEdit? I like to compare files side by side in the text editor. Notepad ++ did that really well in Windows.
Please Log in or Create an account to join the conversation.
Create new file + save (as) 1.nc = Gcode
Create new file + save (as) 1.ngc = Text
Create new file + save (as) 1.ngc + close file + open 1.ngc = Gcode
So it appears that it looks only at the first option in the .lang file to determine language when saving the file.... But when you Open file it looks through all possibilities...
Please Log in or Create an account to join the conversation.
EDIT: I'm not sure about that now. I have a bunch of very simple .nc files and just opened one and it defaults to plain text.
So open doesn't always work either.
EDIT2: I just put ONLY *.NCD in the file types and now it works. For some reason it's not liking the mulltiple file types.
Please Log in or Create an account to join the conversation.
ok not letting me upload it as .nc. Weird for a CNC forum. I suppose I could change it to a .txt but all there is to it is basically a G90 and some G00 and G01 commands.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.