Searched defs:Point3F (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/ui/gfx/
H A Dpoint3_f.h17 class GFX_EXPORT Point3F { class in namespace:gfx
19 Point3F() : x_(0), y_(0), z_(0) {} function in class:gfx::Point3F
21 Point3F(float x, float y, float z) : x_(x), y_(y), z_(z) {} function in class:gfx::Point3F
23 explicit Point3F(const PointF& point) : x_(point.x()), y_(point.y()), z_(0) {} function in class:gfx::Point3F
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
[all...]

Completed in 30 milliseconds