本文整理匯總了Python中abjad.tools.abctools.AbjadValueObject類的典型用法代碼示例。如果您正苦於以下問題:Python AbjadValueObject類的具體用法?Python AbjadValueObject怎麽用?Python AbjadValueObject使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了AbjadValueObject類的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __format__
def __format__(self, format_specification=''):
r'''Formats burnish specifier.
.. container:: example
::
>>> burnish_specifier = rhythmmakertools.BurnishSpecifier(
... left_classes=[Rest, 0],
... left_counts=[1],
... )
::
>>> print(format(burnish_specifier))
rhythmmakertools.BurnishSpecifier(
left_classes=(
scoretools.Rest,
0,
),
left_counts=(1,),
)
Returns string.
'''
return AbjadValueObject.__format__(
self,
format_specification=format_specification,
)
示例2: __format__
def __format__(self, format_specification=''):
r'''Formats incise specifier.
.. container:: example
**Example 1.**
::
>>> incise_specifier = rhythmmakertools.InciseSpecifier(
... prefix_talea=[-1],
... prefix_counts=[0, 1],
... suffix_talea=[-1],
... suffix_counts=[1],
... talea_denominator=16,
... )
::
>>> print(format(incise_specifier))
rhythmmakertools.InciseSpecifier(
prefix_talea=(-1,),
prefix_counts=(0, 1),
suffix_talea=(-1,),
suffix_counts=(1,),
talea_denominator=16,
)
Returns string.
'''
return AbjadValueObject.__format__(
self,
format_specification=format_specification,
)
示例3: __repr__
def __repr__(self):
r'''Gets interpreter representation of beam specifier.
.. container:: example
::
>>> rhythmmakertools.BeamSpecifier()
BeamSpecifier(beam_each_division=True, beam_divisions_together=False, use_feather_beams=False)
Returns string.
'''
return AbjadValueObject.__repr__(self)
示例4: __repr__
def __repr__(self):
r'''Gets interpreter representation.
.. container:: example
::
>>> rhythmmakertools.BeamSpecifier()
BeamSpecifier(beam_each_division=True)
Returns string.
'''
return AbjadValueObject.__repr__(self)
示例5: __repr__
def __repr__(self):
r'''Gets interpreter representation of duration spelling specifier.
.. container:: example
::
>>> rhythmmakertools.DurationSpellingSpecifier()
DurationSpellingSpecifier(decrease_durations_monotonically=True)
Returns string.
'''
return AbjadValueObject.__repr__(self)
示例6: __repr__
def __repr__(self):
r'''Gets interpreter representation of beat grouper.
.. container:: example
::
>>> makertools.PartitionDivisionCallback()
PartitionDivisionCallback(fuse_assignable_total_duration=False, append_remainder=False, remainder_direction=Right)
Returns string.
'''
return AbjadValueObject.__repr__(self)
示例7: __format__
def __format__(self, format_specification=''):
r'''Formats beam specifier.
.. container:: example
::
>>> specifier = rhythmmakertools.BeamSpecifier()
>>> print(format(specifier))
rhythmmakertools.BeamSpecifier(
beam_each_division=True,
)
Returns string.
'''
return AbjadValueObject.__format__(
self,
format_specification=format_specification,
)
示例8: __format__
def __format__(self, format_specification=''):
r'''Formats duration spelling specifier.
.. container:: example
::
>>> specifier = rhythmmakertools.DurationSpellingSpecifier()
>>> print(format(specifier))
rhythmmakertools.DurationSpellingSpecifier(
decrease_durations_monotonically=True,
)
Returns string.
'''
return AbjadValueObject.__format__(
self,
format_specification=format_specification,
)
示例9: __repr__
def __repr__(self):
r'''Gets interpreter representation of burnish specifier.
.. container:: example
::
>>> burnish_specifier = rhythmmakertools.BurnishSpecifier(
... left_classes=[Rest, 0],
... left_counts=[1],
... )
::
>>> burnish_specifier
BurnishSpecifier(left_classes=(Rest, 0), left_counts=(1,))
Returns string.
'''
return AbjadValueObject.__repr__(self)
示例10: __ne__
def __ne__(self, expr):
r'''Is true when `expr` does not equal burnish specifier.
.. container:: example
::
>>> burnish_specifier_1 = rhythmmakertools.BurnishSpecifier(
... left_classes=[Rest, 0],
... left_counts=[1],
... )
>>> burnish_specifier_2 = rhythmmakertools.BurnishSpecifier(
... left_classes=[Rest, 0],
... left_counts=[1],
... )
>>> burnish_specifier_3 = rhythmmakertools.BurnishSpecifier()
::
>>> burnish_specifier_1 != burnish_specifier_1
False
>>> burnish_specifier_1 != burnish_specifier_2
False
>>> burnish_specifier_1 != burnish_specifier_3
True
>>> burnish_specifier_2 != burnish_specifier_1
False
>>> burnish_specifier_2 != burnish_specifier_2
False
>>> burnish_specifier_2 != burnish_specifier_3
True
>>> burnish_specifier_3 != burnish_specifier_1
True
>>> burnish_specifier_3 != burnish_specifier_2
True
>>> burnish_specifier_3 != burnish_specifier_3
False
Returns boolean.
'''
return AbjadValueObject.__ne__(self, expr)
示例11: __format__
def __format__(self, format_specification=''):
r'''Formats beat grouper.
.. container:: example
::
>>> grouper = makertools.PartitionDivisionCallback()
>>> print(format(grouper))
makertools.PartitionDivisionCallback(
fuse_assignable_total_duration=False,
append_remainder=False,
remainder_direction=Right,
)
Returns string.
'''
return AbjadValueObject.__format__(
self,
format_specification=format_specification,
)