aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/SkMatrix_Reference.bmh
diff options
context:
space:
mode:
authorGravatar Cary Clark <caryclark@skia.org>2017-10-26 10:34:05 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-10-26 16:47:07 +0000
commitcfee6ecf5d4812421aead943760832c6daf8e602 (patch)
treeb4c50832297fce1e25ff97243bdb9e064d9e511a /docs/SkMatrix_Reference.bmh
parenta8e40de7a266dc82f60684c262b2b3234a37a510 (diff)
fix matrix order bug
corrected matrix illustration for SkMatrix::MakeTrans Docs-Preview: https://skia.org/?cl=64120 Bug: skia:6898 Change-Id: Iec8ceae6893598919349b24197f30727be892a37 Reviewed-on: https://skia-review.googlesource.com/64120 Commit-Queue: Cary Clark <caryclark@skia.org> Reviewed-by: Cary Clark <caryclark@skia.org>
Diffstat (limited to 'docs/SkMatrix_Reference.bmh')
-rw-r--r--docs/SkMatrix_Reference.bmh6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/SkMatrix_Reference.bmh b/docs/SkMatrix_Reference.bmh
index f91e0096b4..e0d3987d17 100644
--- a/docs/SkMatrix_Reference.bmh
+++ b/docs/SkMatrix_Reference.bmh
@@ -196,9 +196,9 @@ Sets Matrix to translate by (dx, dy). Returned matrix is:
#Code
#Literal
-| 1 0 0 |
-| 0 1 0 |
-| dx dy 1 |
+| 1 0 dx |
+| 0 1 dy |
+| 0 0 1 |
##
#Param dx horizontal translation ##