OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Vector2dF
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/public/platform/
WebFloatSize.h
91
WebFloatSize(const gfx::
Vector2dF
& v)
104
WebFloatSize& operator=(const gfx::
Vector2dF
& v)
116
operator gfx::
Vector2dF
() const
118
return gfx::
Vector2dF
(width, height);
/external/chromium_org/ui/gfx/
vector2d.h
62
operator
Vector2dF
() const { return
Vector2dF
(x_, y_); }
vector2d_f.h
19
class GFX_EXPORT
Vector2dF
{
21
Vector2dF
() : x_(0), y_(0) {}
22
Vector2dF
(float x, float y) : x_(x), y_(y) {}
34
void Add(const
Vector2dF
& other);
36
void Subtract(const
Vector2dF
& other);
38
void operator+=(const
Vector2dF
& other) { Add(other); }
39
void operator-=(const
Vector2dF
& other) { Subtract(other); }
41
void SetToMin(const
Vector2dF
& other) {
46
void SetToMax(const
Vector2dF
& other) {
69
inline bool operator==(const
Vector2dF
& lhs, const Vector2dF& rhs)
[
all
...]
Completed in 36 milliseconds