「VexFlow スラー」の版間の差分

提供:yonewiki
91行目: 91行目:
<script>
<script>
(function(){
(function(){
  const {
const {
    Factory,
  Factory,
    Stave,
  Stave,
    StaveNote,
  StaveNote,
    GhostNote,
  Formatter,
    Formatter,
  Voice,
    Voice,
  StaveTie,
    Barline,
} = Vex.Flow;
    Accidental,
    Beam,
    StaveTie,
  } = Vex.Flow;


  const f = new Factory({ renderer: { elementId: 'yonet202303Mid_Output01', width: 1500, height: 195 } });
const f = new Factory({ renderer: { elementId: 'Output', width: 1500, height: 195 } });
  const ctx = f.getContext();
const ctx = f.getContext();
  const stave1 = new Stave(10, 50, 350).setContext(ctx).draw();
  stave1.addClef("treble").setContext(ctx).draw();
  stave1.addTimeSignature('C').setContext(ctx).draw();


  const notes1 = [
// 小節をまたぐパターン
    new StaveNote({ keys: ["d/5"], duration: "8" }),
const stave1 = new Stave(10, 50, 350).setContext(ctx).draw();
    new StaveNote({ keys: ["d/5"], duration: "8" }),
stave1.addClef("treble").setContext(ctx).draw();
    new StaveNote({ keys: ["d/5"], duration: "4" }),
stave1.addTimeSignature('4/4').setContext(ctx).draw();
    new StaveNote({ keys: ["d/5"], duration: "2" }),
  ];
  Formatter.FormatAndDraw(ctx, stave1, notes1);


const ties1 = [
const notes1 = [
    new StaveTie({
  new StaveNote({ keys: ["d/5"], duration: "q" }),
        first_note: notes1[1],
  new StaveNote({ keys: ["e/5"], duration: "q" }),
        last_note: notes1[2],
  new StaveNote({ keys: ["f/5"], duration: "q" }),
        first_indices: [0],
  new StaveNote({ keys: ["g/5"], duration: "q" }),
        last_indices: [0],
    }),
    new StaveTie({
        first_note: notes1[2],
        last_note: notes1[3],
        first_indices: [0],
        last_indices: [0],
    }),
];
];


ties1.forEach((t) => {
Formatter.FormatAndDraw(ctx, stave1, notes1);
    t.setContext(ctx).draw();
 
const tie1 = new StaveTie({
  first_note: notes1[1],
  last_note: notes1[2],
  first_indices: [0],
  last_indices: [0],
});
 
const tie2 = new StaveTie({
  first_note: notes1[2],
  last_note: notes1[3],
  first_indices: [0],
  last_indices: [0],
});
});
tie1.setContext(ctx).draw();
tie2.setContext(ctx).draw();
// 小節をまたがないパターン
const stave2 = new Stave(10, 150, 350).setContext(ctx).draw();
stave2.addClef("treble").setContext(ctx).draw();
stave2.addTimeSignature('4/4').setContext(ctx).draw();
const notes2 = [
  new StaveNote({ keys: ["d/5"], duration: "q" }),
  new StaveNote({ keys: ["e/5"], duration: "q" }),
  new StaveNote({ keys: ["f/5"], duration: "q" }),
  new StaveNote({ keys: ["g/5"], duration: "q" }),
];
Formatter.FormatAndDraw(ctx, stave2, notes2);
const tie3 = new StaveTie({
  first_note: notes2[1],
  last_note: notes2[2],
  first_indices: [0],
  last_indices: [0],
});
const tie4 = new StaveTie({
  first_note: notes2[2],
  last_note: notes2[3],
  first_indices: [0],
  last_indices: [0],
});
tie3.setContext(ctx).draw();
tie4.setContext(ctx).draw();


})();
})();

2024年3月9日 (土) 23:58時点における版

VexFlow 使い方に戻る。

概要

 タイは同じ高さの音同士を区切らずに演奏する奏法に使います。

 

タイ

 コードは以下のとおりです。

<div id="yonet202303Mid_Output01"></div>
<script>
(function(){
const {
  Factory,
  Stave,
  StaveNote,
  Formatter,
  Voice,
  StaveTie,
} = Vex.Flow;

const f = new Factory({ renderer: { elementId: 'Output', width: 1500, height: 195 } });
const ctx = f.getContext();

// 小節をまたぐパターン
const stave1 = new Stave(10, 50, 350).setContext(ctx).draw();
stave1.addClef("treble").setContext(ctx).draw();
stave1.addTimeSignature('4/4').setContext(ctx).draw();

const notes1 = [
  new StaveNote({ keys: ["d/5"], duration: "q" }),
  new StaveNote({ keys: ["e/5"], duration: "q" }),
  new StaveNote({ keys: ["f/5"], duration: "q" }),
  new StaveNote({ keys: ["g/5"], duration: "q" }),
];

Formatter.FormatAndDraw(ctx, stave1, notes1);

const tie1 = new StaveTie({
  first_note: notes1[1],
  last_note: notes1[2],
  first_indices: [0],
  last_indices: [0],
});

const tie2 = new StaveTie({
  first_note: notes1[2],
  last_note: notes1[3],
  first_indices: [0],
  last_indices: [0],
});

tie1.setContext(ctx).draw();
tie2.setContext(ctx).draw();

// 小節をまたがないパターン
const stave2 = new Stave(10, 150, 350).setContext(ctx).draw();
stave2.addClef("treble").setContext(ctx).draw();
stave2.addTimeSignature('4/4').setContext(ctx).draw();

const notes2 = [
  new StaveNote({ keys: ["d/5"], duration: "q" }),
  new StaveNote({ keys: ["e/5"], duration: "q" }),
  new StaveNote({ keys: ["f/5"], duration: "q" }),
  new StaveNote({ keys: ["g/5"], duration: "q" }),
];

Formatter.FormatAndDraw(ctx, stave2, notes2);

const tie3 = new StaveTie({
  first_note: notes2[1],
  last_note: notes2[2],
  first_indices: [0],
  last_indices: [0],
});

const tie4 = new StaveTie({
  first_note: notes2[2],
  last_note: notes2[3],
  first_indices: [0],
  last_indices: [0],
});

tie3.setContext(ctx).draw();
tie4.setContext(ctx).draw();

})();
</script>


 StaveTie というオブジェクトを利用します。


 配列で [new StaveTie({オブジェクト}), …] という構造のものを用意し、配列を代入した変数を作ります。


 const Ties1 = [new StaveTie({オブジェクト}), new StaveTie({オブジェクト})]; のような形式です。オブジェクトには以下のようなキーと値を設定します。


  • first_note: タイの始まりの音符を設定します。例:notes1[2]
  • last_note: タイの終わりの音符を設定します。例:notes1[3]
  • first_indices: タイの始まりの音符の和音の番号を設定します。和音になっていない場合は配列番号 0 を指定します。例:[0]
  • last_indices: タイの終わりの音符の和音の番号を設定します。和音になっていない場合は配列番号 0 を指定します。例:[0]


 

VexFlow 使い方に戻る。