HomeSort by relevance Sort by last modified time
    Searched defs:Vector2dF (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/public/platform/
WebFloatSize.h 89 WebFloatSize(const gfx::Vector2dF& v)
102 WebFloatSize& operator=(const gfx::Vector2dF& v)
114 operator gfx::Vector2dF() const
116 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 UI_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 84 milliseconds