commands

digraph InheritanceGraph { graph [bgcolor=transparent, color=lightsteelblue2, fontname=Arial, fontsize=10, outputorder=edgesfirst, overlap=prism, penwidth=2, rankdir=LR, splines=spline, style="dashed, rounded", truecolor=true]; node [colorscheme=pastel19, fontname=Arial, fontsize=10, height=0, penwidth=2, shape=box, style="filled, rounded", width=0]; edge [color=lightslategrey, penwidth=1]; subgraph cluster_builtins { graph [label=builtins]; node [color=1]; "builtins.object" [URL="https://docs.python.org/3.9/library/functions.html#object", label=object, target=_top]; } subgraph "cluster_pang.commands" { graph [label="pang.commands"]; node [color=2]; "pang.commands.Command" [URL="../api/pang/commands.html#pang.commands.Command", color=black, fontcolor=white, label=Command, target=_top]; "pang.commands.QuantizeSequenceCommand" [URL="../api/pang/commands.html#pang.commands.QuantizeSequenceCommand", color=black, fontcolor=white, label="Quantize\nSequence\nCommand", target=_top]; "pang.commands.Command" -> "pang.commands.QuantizeSequenceCommand"; } "builtins.object" -> "pang.commands.Command"; }


Classes

Command

Base command class.

QuantizeSequenceCommand

Quantize Sequence Command.

class pang.commands.Command

Base command class. To be called by SegmentMaker.


Attributes Summary

__call__

Call self as a function.


Special methods

overridden __call__()

Call self as a function.

class pang.commands.QuantizeSequenceCommand(sequence, q_schema=None, grace_handler=None, heuristic=None, attack_point_optimizer=None, attach_tempos=True)

Quantize Sequence Command.


Attributes Summary

__call__

Call self as a function.


Special methods

overridden __call__()

Call self as a function.