Inkscape.org
Using Inkscape with Cutters/Plotters Is there a way to permanently edit thr default gcode tool's values as opposed to editing every instance?
  1. #1
    dancameron0 dancameron0 @dancameron0

    😀

  2. #2
    jzj3xz jzj3xz @jzj3xz

    Hi Guys,

    I am sure that this could be something that would of interest to a fairly large section of the community.

    I tend to pretty much use two or three tools and a good deal of the parameters have to be reset each time.

     

  3. #3
    Jurgen Gaeremyn Jurgen Gaeremyn @JurgenG

    Yes, this would be of value. Maintaining gcode extensions is a cumbersome work. I think it would be great if you could (find a) volunteer to pick up that great task.

  4. #4
    jzj3xz jzj3xz @jzj3xz

    Hi Jurgen, 

    I would love to get involved if I knew where to start. 

    Any suggestions?

  5. #5
    Jurgen Gaeremyn Jurgen Gaeremyn @JurgenG

    Here are a few links where you can find information on how to get started:

    The community chat (extensions channel): https://chat.inkscape.org/channel/inkscape_extensions

    The forum channel on developing extensions: https://inkscape.org/forums/extensions/

    I don't have a clue what your existing skill level is, so pardon me if I'm assuming stuff, or put obvious suggestions.

    Here's what you could do:

    1. For the repository of the project you want to bring up to speed.
    2. Get in touch with the lead developer (maybe he's waiting for a second pair of eyes)
    3. Ask for help when you get stuck on one of the above sources (or first look into them, maybe your question is already documented)
  6. #6
    inklinea inklinea @inklinea⛰️

    It might be sufficient in the effects section to add this: 

    def effect(self):
        
        ...... etc

    if 'diameter' in self.default_tool.keys():
        self.default_tool['diameter'] = 30

    default_tool has dictionary values.

     

  7. #7
    jzj3xz jzj3xz @jzj3xz

    A big thank you to all of you that chipped in.

    I found that by editing the code in lines from 3080 in gcodetools.py, that issue could be resolved. 

Inkscape Inkscape.org Inkscape Forum Using Inkscape with Cutters/Plotters Is there a way to permanently edit thr default gcode tool's values as opposed to editing every instance?