New in version 2.0.
One row in pitch array.
abjad> from abjad.tools import pitcharraytools
abjad> array = pitcharraytools.PitchArray([[1, 2, 1], [2, 1, 1]])
abjad> array[0].cells[0].pitches.append(0)
abjad> array[0].cells[1].pitches.append(2)
abjad> array[1].cells[2].pitches.append(4)
abjad> print array
[c'] [d' ] [ ]
[ ] [ ] [e']
abjad> array[0]
PitchArrayRow(c', d' x2, x1)
abjad> array[0].cell_widths
(1, 2, 1)
abjad> array[0].dimensions
(1, 4)
abjad> array[0].pitches
(NamedChromaticPitch("c'"), NamedChromaticPitch("d'"))
Return pitch array row.
x.__delattr__(‘name’) <==> del x.name
Note
Inherited from __builtin__.object
Abjad objects by default do not implement this method.
Raise exception.
Note
Inherited from abctools.AbjadObject
Abjad objects by default do not implement this method.
Raise exception
Note
Inherited from abctools.AbjadObject
Note
Inherited from __builtin__.object
Abjad objects by default do not implement this method.
Raise exception.
Note
Inherited from abctools.AbjadObject
Abjad objects by default do not implement this method.
Raise exception.
Note
Inherited from abctools.AbjadObject
x.__setattr__(‘name’, value) <==> x.name = value
Note
Inherited from __builtin__.object