aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkPoint.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/core/SkPoint.h')
-rw-r--r--include/core/SkPoint.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/core/SkPoint.h b/include/core/SkPoint.h
index 52d01ae88c..4a97391c70 100644
--- a/include/core/SkPoint.h
+++ b/include/core/SkPoint.h
@@ -348,16 +348,6 @@ struct SK_API SkPoint {
fY -= v.fY;
}
- SkPoint operator*(SkScalar scale) const {
- return Make(fX * scale, fY * scale);
- }
-
- SkPoint& operator*=(SkScalar scale) {
- fX *= scale;
- fY *= scale;
- return *this;
- }
-
/**
* Returns true if both X and Y are finite (not infinity or NaN)
*/