Go to the source code of this file.
|
| #define | MIN(a, b) (a < b ? a : b) |
| |
| #define | MAX(a, b) (a > b ? a : b) |
| |
|
| bool | operator== (const eSize &s1, const eSize &s2) |
| |
| bool | operator!= (const eSize &s1, const eSize &s2) |
| |
| eSize | operator+ (const eSize &s1, const eSize &s2) |
| |
| eSize | operator- (const eSize &s1, const eSize &s2) |
| |
| eSize | operator* (const eSize &s, int c) |
| |
| eSize | operator* (int c, const eSize &s) |
| |
| eSize | operator* (const eSize &s, double c) |
| |
| eSize | operator* (double c, const eSize &s) |
| |
| eSize | operator/ (const eSize &s, int c) |
| |
| eSize | operator/ (const eSize &s, double c) |
| |
◆ MAX
| #define MAX |
( |
|
a, |
|
|
|
b |
|
) |
| (a > b ? a : b) |
◆ MIN
| #define MIN |
( |
|
a, |
|
|
|
b |
|
) |
| (a < b ? a : b) |
◆ operator!=()
| bool operator!= |
( |
const eSize & |
s1, |
|
|
const eSize & |
s2 |
|
) |
| |
|
inline |
◆ operator*() [1/4]
◆ operator*() [2/4]
◆ operator*() [3/4]
◆ operator*() [4/4]
◆ operator+()
◆ operator-()
◆ operator/() [1/2]
◆ operator/() [2/2]
◆ operator==()
| bool operator== |
( |
const eSize & |
s1, |
|
|
const eSize & |
s2 |
|
) |
| |
|
inline |