コード例 #1
0
ファイル: Leaf.py プロジェクト: ajyoon/abjad
 def _copy_with_indicators_but_without_children_or_spanners(self):
     new = Component._copy_with_indicators_but_without_children_or_spanners(self)
     for grace_container in self._get_grace_containers():
         new_grace_container = \
             grace_container._copy_with_children_and_indicators_but_without_spanners()
         attach(new_grace_container, new)
     return new
コード例 #2
0
 def _copy_with_indicators_but_without_children_or_spanners(self):
     new = Component._copy_with_indicators_but_without_children_or_spanners(self)
     for grace_container in self._get_grace_containers():
         new_grace_container = \
             grace_container._copy_with_children_and_indicators_but_without_spanners()
         attach(new_grace_container, new)
     return new
コード例 #3
0
ファイル: Container.py プロジェクト: gkthiruvathukal/abjad
 def _copy_with_indicators_but_without_children_or_spanners(self):
     new = Component._copy_with_indicators_but_without_children_or_spanners(
         self)
     new.is_simultaneous = self.is_simultaneous
     return new
コード例 #4
0
ファイル: Container.py プロジェクト: matangover/abjad
 def _copy_with_indicators_but_without_children_or_spanners(self):
     new = Component._copy_with_indicators_but_without_children_or_spanners(
         self)
     new.is_simultaneous = self.is_simultaneous
     return new