1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_GFX_GEOMETRY_POINT_F_H_
6 #define UI_GFX_GEOMETRY_POINT_F_H_
10 #include "ui/gfx/geometry/point_base.h"
11 #include "ui/gfx/geometry/vector2d_f.h"
12 #include "ui/gfx/gfx_export.h"
16 // A floating version of gfx::Point.
17 class GFX_EXPORT PointF
: public PointBase
<PointF
, float, Vector2dF
> {
19 PointF() : PointBase
<PointF
, float, Vector2dF
>(0, 0) {}
20 PointF(float x
, float y
) : PointBase
<PointF
, float, Vector2dF
>(x
, y
) {}
23 void Scale(float scale
) {
27 void Scale(float x_scale
, float y_scale
) {
28 SetPoint(x() * x_scale
, y() * y_scale
);
31 // Returns a string representation of point.
32 std::string
ToString() const;
35 inline bool operator==(const PointF
& lhs
, const PointF
& rhs
) {
36 return lhs
.x() == rhs
.x() && lhs
.y() == rhs
.y();
39 inline bool operator!=(const PointF
& lhs
, const PointF
& rhs
) {
43 inline PointF
operator+(const PointF
& lhs
, const Vector2dF
& rhs
) {
49 inline PointF
operator-(const PointF
& lhs
, const Vector2dF
& rhs
) {
55 inline Vector2dF
operator-(const PointF
& lhs
, const PointF
& rhs
) {
56 return Vector2dF(lhs
.x() - rhs
.x(), lhs
.y() - rhs
.y());
59 inline PointF
PointAtOffsetFromOrigin(const Vector2dF
& offset_from_origin
) {
60 return PointF(offset_from_origin
.x(), offset_from_origin
.y());
63 GFX_EXPORT PointF
ScalePoint(const PointF
& p
, float x_scale
, float y_scale
);
65 inline PointF
ScalePoint(const PointF
& p
, float scale
) {
66 return ScalePoint(p
, scale
, scale
);
69 #if !defined(COMPILER_MSVC)
70 extern template class PointBase
<PointF
, float, Vector2dF
>;
75 #endif // UI_GFX_GEOMETRY_POINT_F_H_