BowMotionTechnique¶
-
class
abjad.indicators.BowMotionTechnique.
BowMotionTechnique
(technique_name=None)¶ Bow motion technique.
Jété:
>>> bow_motion_technique = abjad.BowMotionTechnique('jete') >>> abjad.f(bow_motion_technique) abjad.BowMotionTechnique( technique_name='jete', )
Ordinario:
>>> bow_motion_technique = abjad.BowMotionTechnique('ordinario') >>> abjad.f(bow_motion_technique) abjad.BowMotionTechnique( technique_name='ordinario', )
Valid technique names include ‘ordinario’, ‘jeté’ and ‘circular’.
Attributes Summary
glissando_style
Gets glissando style of bow motion technique. parameter
Is true. technique_name
Gets technique name of bow motion technique. tweaks
Are not implemented on bow motion technique. Special methods
-
(
AbjadValueObject
).__copy__
(*arguments)¶ Copies Abjad value object.
Returns new Abjad value object.
-
(
AbjadValueObject
).__eq__
(argument)¶ Is true when all initialization values of Abjad value object equal the initialization values of
argument
.Returns true or false.
-
(
AbjadObject
).__format__
(format_specification='')¶ Formats Abjad object.
Set
format_specification
to''
or'storage'
. Interprets''
equal to'storage'
.Returns string.
-
(
AbjadValueObject
).__hash__
()¶ Hashes Abjad value object.
Returns integer.
-
(
AbjadObject
).__repr__
()¶ Gets interpreter representation of Abjad object.
Returns string.
Read-only properties
-
glissando_style
¶ Gets glissando style of bow motion technique.
>>> abjad.BowMotionTechnique('jete').glissando_style 'dotted-line'
Return type: str
-
technique_name
¶ Gets technique name of bow motion technique.
>>> abjad.BowMotionTechnique('jete').technique_name 'jete'
Return type: Optional
[str
]
-
tweaks
¶ Are not implemented on bow motion technique.
Return type: None
-