#include <Point2f.h>
Public Member Functions | |
Point2f () | |
コンストラクタ | |
Point2f (float sourceX, float sourceY) | |
コンストラクタ | |
Point2f (float sourceArray[2]) | |
コンストラクタ | |
Point2f (const Point2i &source) | |
コンストラクタ | |
void | set (float sourceX, float sourceY) |
値の設定 | |
void | set (float sourceArray[2]) |
値の設定 | |
void | set (const Point2i &source) |
値の設定 | |
Point2f | operator+ (const Point2f &addPoint) const |
加算 | |
Point2f | operator- (const Point2f &subPoint) const |
減算 | |
Point2f | operator * (const Point2f &mulPoint) const |
乗算 | |
Point2f | operator * (float mulValue) const |
乗算 | |
Point2f | operator+ () const |
+演算子 | |
Point2f | operator- () const |
-演算子 | |
Point2f & | operator+= (const Point2f &addPoint) |
代入加算 | |
Point2f & | operator-= (const Point2f &subPoint) |
代入減算 | |
Point2f & | operator *= (const Point2f &mulPoint) |
代入乗算 | |
Point2f & | operator *= (float mulValue) |
代入乗算 | |
bool | operator== (const Point2f &target) const |
同じ値かどうか | |
bool | operator!= (const Point2f &target) const |
同じ値でないかどうか | |
String | toString () const |
文字列化 | |
Static Public Attributes | |
const Point2f | zero |
ゼロ位置 | |
const Point2f | unit |
単位位置 | |
Friends | |
Point2f | operator * (float mulValue, const Point2f &mulPoint) |
乗算 |
このクラスは継承しないで下さい。
Definition at line 38 of file Point2f.h.
|
コンストラクタ このコンストラクタは初期値の設定を行わないため値は不定です。 Definition at line 74 of file Point2f.h. Referenced by operator *(), operator+(), and operator-(). |
|
コンストラクタ
|
|
コンストラクタ
|
|
コンストラクタ
Definition at line 42 of file Point2f.cpp. |
|
乗算
|
|
乗算
|
|
代入乗算
|
|
代入乗算
|
|
同じ値でないかどうか
|
|
+演算子
|
|
加算
|
|
代入加算
|
|
-演算子
|
|
減算
|
|
代入減算
|
|
同じ値かどうか
|
|
値の設定
Definition at line 47 of file Point2f.cpp. References Lamp::Point2i::x, x, Lamp::Point2i::y, and y. |
|
値の設定
|
|
値の設定
|
|
文字列化
Definition at line 260 of file Point2f.h. References Lamp::String::format(), x, and y. |
|
乗算
|