ARTSAT API
2.7.1
|
構成 | |
class | ofxSATTimeDiff |
時刻差を表現するクラス [詳細] | |
関数 | |
ofxSATTimeDiff | operator+ (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y) |
ofxSATTimeDiff | operator- (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y) |
ofxSATTimeDiff | operator* (ofxSATTimeDiff const &x, int y) |
ofxSATTimeDiff | operator/ (ofxSATTimeDiff const &x, int y) |
ofxSATTimeDiff | operator% (ofxSATTimeDiff const &x, int y) |
bool | operator== (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y) |
bool | operator!= (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y) |
bool | operator< (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y) |
bool | operator<= (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y) |
bool | operator> (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y) |
bool | operator>= (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y) |
ARTSAT API で利用する時刻差を表現するクラスを含みます。
ofxSATTimeDiff operator+ | ( | ofxSATTimeDiff const & | x, |
ofxSATTimeDiff const & | y | ||
) |
値を加算します。
[in] | x | 左辺値 |
[in] | y | 右辺値 |
ofxSATTimeDiff operator- | ( | ofxSATTimeDiff const & | x, |
ofxSATTimeDiff const & | y | ||
) |
値を減算します。
[in] | x | 左辺値 |
[in] | y | 右辺値 |
ofxSATTimeDiff operator* | ( | ofxSATTimeDiff const & | x, |
int | y | ||
) |
値を乗算します。
[in] | x | 左辺値 |
[in] | y | 右辺値 |
ofxSATTimeDiff operator/ | ( | ofxSATTimeDiff const & | x, |
int | y | ||
) |
値を除算します。
[in] | x | 左辺値 |
[in] | y | 右辺値 |
ofxSATTimeDiff operator% | ( | ofxSATTimeDiff const & | x, |
int | y | ||
) |
値の剰余を計算します。
[in] | x | 左辺値 |
[in] | y | 右辺値 |
bool operator== | ( | ofxSATTimeDiff const & | x, |
ofxSATTimeDiff const & | y | ||
) |
値を比較します。
[in] | x | 左辺値 |
[in] | y | 右辺値 |
true | 同じ |
false | 同じでない |
bool operator!= | ( | ofxSATTimeDiff const & | x, |
ofxSATTimeDiff const & | y | ||
) |
値を逆比較します。
[in] | x | 左辺値 |
[in] | y | 右辺値 |
true | 同じでない |
false | 同じ |
bool operator< | ( | ofxSATTimeDiff const & | x, |
ofxSATTimeDiff const & | y | ||
) |
値の大小(未満)を比較します。
[in] | x | 左辺値 |
[in] | y | 右辺値 |
true | 真 (this < param) |
false | 偽 (this >= param) |
bool operator<= | ( | ofxSATTimeDiff const & | x, |
ofxSATTimeDiff const & | y | ||
) |
値の大小(以下)を比較します。
[in] | x | 左辺値 |
[in] | y | 右辺値 |
true | 真 (this <= param) |
false | 偽 (this > param) |
bool operator> | ( | ofxSATTimeDiff const & | x, |
ofxSATTimeDiff const & | y | ||
) |
値の大小(より大きい)を比較します。
[in] | x | 左辺値 |
[in] | y | 右辺値 |
true | 真 (this > param) |
false | 偽 (this <= param) |
bool operator>= | ( | ofxSATTimeDiff const & | x, |
ofxSATTimeDiff const & | y | ||
) |
値の大小(以上)を比較します。
[in] | x | 左辺値 |
[in] | y | 右辺値 |
true | 真 (this >= param) |
false | 偽 (this < param) |