1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_GFX_GEOMETRY_POINT3_F_H_
#define UI_GFX_GEOMETRY_POINT3_F_H_
#include <iosfwd>
#include <string>
#include "base/component_export.h"
#include "ui/gfx/geometry/point_f.h"
#include "ui/gfx/geometry/vector3d_f.h"
namespace gfx {
// A point has an x, y and z coordinate.
class COMPONENT_EXPORT(GEOMETRY) Point3F {
public:
constexpr Point3F() : x_(0), y_(0), z_(0) {}
constexpr Point3F(float x, float y, float z) : x_(x), y_(y), z_(z) {}
constexpr explicit Point3F(const PointF& point)
: x_(point.x()), y_(point.y()), z_(0) {}
void Scale(float scale) {
Scale(scale, scale, scale);
}
void Scale(float x_scale, float y_scale, float z_scale) {
SetPoint(x() * x_scale, y() * y_scale, z() * z_scale);
}
constexpr float x() const { return x_; }
constexpr float y() const { return y_; }
constexpr float z() const { return z_; }
void set_x(float x) { x_ = x; }
void set_y(float y) { y_ = y; }
void set_z(float z) { z_ = z; }
void SetPoint(float x, float y, float z) {
x_ = x;
y_ = y;
z_ = z;
}
bool IsOrigin() const { return x_ == 0 && y_ == 0 && z_ == 0; }
// Offset the point by the given vector.
void operator+=(const Vector3dF& v) {
x_ += v.x();
y_ += v.y();
z_ += v.z();
}
// Offset the point by the given vector's inverse.
void operator-=(const Vector3dF& v) {
x_ -= v.x();
y_ -= v.y();
z_ -= v.z();
}
// Returns the squared euclidean distance between two points.
float SquaredDistanceTo(const Point3F& other) const {
float dx = x_ - other.x_;
float dy = y_ - other.y_;
float dz = z_ - other.z_;
return dx * dx + dy * dy + dz * dz;
}
PointF AsPointF() const { return PointF(x_, y_); }
Vector3dF OffsetFromOrigin() const { return Vector3dF(x_, y_, z_); }
// Returns a string representation of 3d point.
std::string ToString() const;
friend bool operator==(const Point3F&, const Point3F&) = default;
private:
float x_;
float y_;
float z_;
// copy/assign are allowed.
};
// Add a vector to a point, producing a new point offset by the vector.
COMPONENT_EXPORT(GEOMETRY)
Point3F operator+(const Point3F& lhs, const Vector3dF& rhs);
// Subtract a vector from a point, producing a new point offset by the vector's
// inverse.
COMPONENT_EXPORT(GEOMETRY)
Point3F operator-(const Point3F& lhs, const Vector3dF& rhs);
// Subtract one point from another, producing a vector that represents the
// distances between the two points along each axis.
COMPONENT_EXPORT(GEOMETRY)
Vector3dF operator-(const Point3F& lhs, const Point3F& rhs);
inline Point3F PointAtOffsetFromOrigin(const Vector3dF& offset) {
return Point3F(offset.x(), offset.y(), offset.z());
}
inline Point3F ScalePoint(const Point3F& p,
float x_scale,
float y_scale,
float z_scale) {
return Point3F(p.x() * x_scale, p.y() * y_scale, p.z() * z_scale);
}
inline Point3F ScalePoint(const Point3F& p, const Vector3dF& v) {
return Point3F(p.x() * v.x(), p.y() * v.y(), p.z() * v.z());
}
inline Point3F ScalePoint(const Point3F& p, float scale) {
return ScalePoint(p, scale, scale, scale);
}
// This is declared here for use in gtest-based unit tests but is defined in
// the //ui/gfx:test_support target. Depend on that to use this in your unit
// test. This should not be used in production code - call ToString() instead.
void PrintTo(const Point3F& point, ::std::ostream* os);
} // namespace gfx
#endif // UI_GFX_GEOMETRY_POINT3_F_H_
|