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

  /external/chromium_org/ui/gfx/geometry/
point3_f.h 17 class GFX_EXPORT Point3F {
19 Point3F() : x_(0), y_(0), z_(0) {}
21 Point3F(float x, float y, float z) : x_(x), y_(y), z_(z) {}
23 explicit Point3F(const PointF& point) : x_(point.x()), y_(point.y()), z_(0) {}
25 ~Point3F() {}
64 float SquaredDistanceTo(const Point3F& other) const {
84 inline bool operator==(const Point3F& lhs, const Point3F& rhs) {
88 inline bool operator!=(const Point3F& lhs, const Point3F& rhs)
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebFloatPoint3D.h 59 WebFloatPoint3D(const gfx::Point3F& p)
66 WebFloatPoint3D& operator=(const gfx::Point3F& p)
73 operator gfx::Point3F() const
75 return gfx::Point3F(x, y, z);

Completed in 187 milliseconds