Skip to content

Commit

Permalink
♻️ Comment translated into English
Browse files Browse the repository at this point in the history
  • Loading branch information
AutumnSky1010 committed Dec 30, 2024
1 parent 681a87b commit f90ea35
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/SoundMaker/Sounds/Track.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,13 @@ public short[] GenerateWave()
}

/// <summary>
/// 指定した範囲の波形を生成する。
/// Generates the waveform data for the specified range. <br/>
/// 指定した範囲の波形データを生成するメソッド。
/// </summary>
/// <param name="startIndex">開始インデックス</param>
/// <param name="endIndex">終了インデックス</param>
/// <returns>指定範囲の波形データ</returns>
/// <param name="startIndex">The starting index of the range. <br/> 範囲の開始インデックス。</param>
/// <param name="endIndex">The ending index of the range. <br/> 範囲の終了インデックス。</param>
/// <returns>The waveform data for the specified range. <br/> 指定範囲の波形データ。</returns>

public short[] GeneratePartialWave(int startIndex, int endIndex)
{
// 入力検証
Expand Down

0 comments on commit f90ea35

Please sign in to comment.