aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkPoint.h
diff options
context:
space:
mode:
authorGravatar Cary Clark <caryclark@skia.org>2018-06-14 13:21:08 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-06-14 18:02:37 +0000
commitca6a2454b8ebc191783cff1f47198d6c0ce8c2a8 (patch)
tree4f3379a83143d2cebcb95fa10404e2e316054d91 /include/core/SkPoint.h
parentcf274da6faa9d32e08053180c8113fcaab666028 (diff)
refresh generated includes
Found some bookmaker bugs that were suppressing spelling errors and syntax errors. TBR=reed@google.com Bug: skia:6898 Change-Id: Ie7331dd03723d987cb2df46018a984f42d0ee518 Reviewed-on: https://skia-review.googlesource.com/134942 Reviewed-by: Cary Clark <caryclark@skia.org> Commit-Queue: Cary Clark <caryclark@skia.org> Auto-Submit: Cary Clark <caryclark@skia.org>
Diffstat (limited to 'include/core/SkPoint.h')
-rw-r--r--include/core/SkPoint.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/core/SkPoint.h b/include/core/SkPoint.h
index f705888c62..75451da71c 100644
--- a/include/core/SkPoint.h
+++ b/include/core/SkPoint.h
@@ -6,7 +6,7 @@
*/
/* Generated by tools/bookmaker from include/core/SkPoint.h and docs/SkPoint_Reference.bmh
- on 2018-06-08 11:48:28. Additional documentation and examples can be found at:
+ on 2018-06-14 13:13:34. Additional documentation and examples can be found at:
https://skia.org/user/api/SkPoint_Reference
You may edit either file directly. Structural changes to public interfaces require
@@ -159,7 +159,7 @@ struct SkIPoint {
struct SkPoint;
/** SkVector provides an alternative name for SkPoint. SkVector and SkPoint can
- be used interchangably for all purposes.
+ be used interchangeably for all purposes.
*/
typedef SkPoint SkVector;
@@ -277,7 +277,7 @@ struct SK_API SkPoint {
fY += dy;
}
- /** Returns the Euclidean_Distance from origin, computed as:
+ /** Returns the Euclidean distance from origin, computed as:
sqrt(fX * fX + fY * fY)
@@ -287,7 +287,7 @@ struct SK_API SkPoint {
*/
SkScalar length() const { return SkPoint::Length(fX, fY); }
- /** Returns the Euclidean_Distance from origin, computed as:
+ /** Returns the Euclidean distance from origin, computed as:
sqrt(fX * fX + fY * fY)
@@ -474,7 +474,7 @@ struct SK_API SkPoint {
return {a.fX + b.fX, a.fY + b.fY};
}
- /** Returns the Euclidean_Distance from origin, computed as:
+ /** Returns the Euclidean distance from origin, computed as:
sqrt(x * x + y * y)
@@ -499,7 +499,7 @@ struct SK_API SkPoint {
*/
static SkScalar Normalize(SkVector* vec);
- /** Returns the Euclidean_Distance between a and b.
+ /** Returns the Euclidean distance between a and b.
@param a line end point
@param b line end point