本文整理汇总了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,
)