C# Class SoundLibrary.Mathematics.Continuous.Range

定義域の範囲を表す構造体。
Datei anzeigen Open project: ufcpp/UfcppSample

Public Methods

Method Description
Range ( bool hasMin, bool hasMax, double inf, double sup ) : System

最小・最大値の有無、上限・下限を指定して初期化。 例: (1, 2] → new Range(false, true, 1, 2)、 [0, 1] → new Range(true, true, 0, 1)

Method Details

Range() public method

最小・最大値の有無、上限・下限を指定して初期化。 例: (1, 2] → new Range(false, true, 1, 2)、 [0, 1] → new Range(true, true, 0, 1)
public Range ( bool hasMin, bool hasMax, double inf, double sup ) : System
hasMin bool
hasMax bool
inf double
sup double
return System