Skip to content

Callbacks for different stages #164

@marcrleonard

Description

@marcrleonard

Hello! Been working with the python library and it's been really great to work with! Much better than the wrapper I wrote :-)

As I was working with the library I realized that it may be helpful to register callback functions for different stages of the plotting process. The one that specifically came to mind was for 'layer complete'. This would, for instance, allow you to group colors or thickness in layers and when the layer has completed plotting, you could write some code to execute. This is more powerful (and synchronous) than than the pause mechanism. It could look something like this:

from pyaxidraw import axidraw

def my_callback(*args, **kwargs):
    print("Layer has completed...")
    sleep(5)
    # Do some other helpful things like make a request or alert the user

ad = axidraw.AxiDraw()
ad.plot_setup("file.svg")
ad.callbacks.layer_complete=my_callback,
ad.plot_run()

Let me know what you think! I bet there are a dozen of these that could be helpful to interrupt/resume plots.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions