sketchkit.ordering package

Subpackages

Module contents

class sketchkit.ordering.Orderer[source]

Bases: ABC

A class for sketch ordering.

method

The ordering method that is used.

Type:

str

device

The device that is used.

Type:

str

_abc_impl = <_abc._abc_data object>
static create(method: Literal['LineDrawer'], device: str = 'cuda') LineDrawer[source]
static create(method: Literal['Fu'], device: str = 'cpu') Orderer

Possible changes to the value of the __init__ argument do not affect the returned instance.

abstractmethod run(*args, **kwargs) Sketch[source]