TimespanSimultaneity

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.7/library/functions.html#object", label=object, target=_top]; } subgraph "cluster_evans.consort" { graph [label="evans.consort"]; node [color=2]; "evans.consort.AbjadObject.AbjadObject" [URL="../api/evans/consort/AbjadObject.html#evans.consort.AbjadObject.AbjadObject", label="Abjad\nObject", target=_top]; "evans.consort.TimespanSimultaneity.TimespanSimultaneity" [URL="../api/evans/consort/TimespanSimultaneity.html#evans.consort.TimespanSimultaneity.TimespanSimultaneity", color=black, fontcolor=white, label="Timespan\nSimultaneity", target=_top]; "evans.consort.AbjadObject.AbjadObject" -> "evans.consort.TimespanSimultaneity.TimespanSimultaneity"; } "builtins.object" -> "evans.consort.AbjadObject.AbjadObject"; }

class evans.consort.TimespanSimultaneity.TimespanSimultaneity(timespan_collection=None, overlap_timespans=None, start_timespans=None, start_offset=None, stop_timespans=None)[source]

A simultaneity of timespans in a timespan collection.


Attributes Summary

__repr__

Gets the repr of this simultaneity.

next_simultaneity

Gets the next simultaneity in this simultaneity’s timespan collection.

next_start_offset

Gets the next simultaneity start offset in this simultaneity’s timespan collection.

overlap_timespans

Gets the timespans in this simultaneity which overlap this simultaneity’s start offset.

previous_simultaneity

Gets the previous simultaneity in this simultaneity’s timespan collection.

previous_start_offset

Gets the previous simultaneity start offset in this simultaneity’s timespan collection.

start_offset

Gets this simultaneity’s start offset.

start_timespans

Gets the timespans in this simultaneity which start at this simultaneity’s start offset.

stop_timespans

Gets the timespans in this simultaneity which stop at this simultaneity’s start offset.

timespan_collection

Gets this simultaneity’s timespan collection.


Special methods

(AbjadObject).__eq__(argument)

Is true when ID of argument equals ID of Abjad object. Otherwise false. Returns true or false.

(AbjadObject).__format__(format_specification='')

Formats Abjad object. Set format_specification to ‘’ or ‘storage’. Interprets ‘’ equal to ‘storage’. Returns string.

(AbjadObject).__hash__()

Hashes Abjad object. Required to be explicitly redefined on Python 3 if __eq__ changes. Returns integer.

(AbjadObject).__ne__(argument)

Is true when Abjad object does not equal argument. Otherwise false. Returns true or false.

overridden __repr__()[source]

Gets the repr of this simultaneity.

(AbjadObject).__str__()

Return str(self).


Read-only properties

next_simultaneity

Gets the next simultaneity in this simultaneity’s timespan collection.

next_start_offset

Gets the next simultaneity start offset in this simultaneity’s timespan collection.

overlap_timespans

Gets the timespans in this simultaneity which overlap this simultaneity’s start offset.

previous_simultaneity

Gets the previous simultaneity in this simultaneity’s timespan collection.

previous_start_offset

Gets the previous simultaneity start offset in this simultaneity’s timespan collection.

start_offset

Gets this simultaneity’s start offset.

start_timespans

Gets the timespans in this simultaneity which start at this simultaneity’s start offset.

stop_timespans

Gets the timespans in this simultaneity which stop at this simultaneity’s start offset.

timespan_collection

Gets this simultaneity’s timespan collection.