-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Documentation Modification
- Loading branch information
Showing
42 changed files
with
365 additions
and
361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
namespace SoundMaker.Sounds; | ||
|
||
/// <summary> | ||
/// interface for wave. 波を表すインターフェイス | ||
/// Interface for wave. 波を表すインターフェイス | ||
/// </summary> | ||
public interface IWave | ||
{ | ||
/// <summary> | ||
/// get length of bytes of wave data. 波形データのバイト列の長さを取得するメソッド。 | ||
/// Get the length of bytes of wave data. <br/>波形データのバイト列の長さを取得するメソッド。 | ||
/// </summary> | ||
/// <param name="bitRate">quantization bit rate. 量子化ビット数</param> | ||
/// <returns>length of bytes of wave data.</returns> | ||
/// <param name="bitRate">Quantization bit rate. <br/>量子化ビット数</param> | ||
/// <returns>Length of bytes of wave data.</returns> | ||
int GetLengthOfBytes(BitRateType bitRate); | ||
|
||
/// <summary> | ||
/// get the array of bytes of wave data. 波形データのバイト列を取得するメソッド。 | ||
/// Get the array of bytes of wave data. <br/>波形データのバイト列を取得するメソッド。 | ||
/// </summary> | ||
/// <param name="bitRate">quantization bit rate. 量子化ビット数</param> | ||
/// <returns>bytes of wave data. 波形データのバイト列 : byte[]</returns> | ||
/// <param name="bitRate">Quantization bit rate. <br/>量子化ビット数</param> | ||
/// <returns>Array of bytes of wave data. <br/>波形データのバイト列 : byte[]</returns> | ||
byte[] GetBytes(BitRateType bitRate); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.