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

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatPoint3D.h59 WebFloatPoint3D(const gfx::Point3F& p)
66 WebFloatPoint3D& operator=(const gfx::Point3F& p)
73 operator gfx::Point3F() const
75 return gfx::Point3F(x, y, z);
/external/chromium_org/ui/gfx/geometry/
H A Dpoint3_f.h18 class GFX_EXPORT Point3F { class in namespace:gfx
20 Point3F() : x_(0), y_(0), z_(0) {} function in class:gfx::Point3F
22 Point3F(float x, float y, float z) : x_(x), y_(y), z_(z) {} function in class:gfx::Point3F
24 explicit Point3F(const PointF& point) : x_(point.x()), y_(point.y()), z_(0) {} function in class:gfx::Point3F
26 ~Point3F() {}
65 float SquaredDistanceTo(const Point3F& other) const {
85 inline bool operator==(const Point3F& lhs, const Point3F& rhs) {
89 inline bool operator!=(const Point3F& lhs, const Point3F
[all...]

Completed in 146 milliseconds