reed | afa278e | 2014-11-24 19:11:48 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | // EXPERIMENTAL EXPERIMENTAL EXPERIMENTAL EXPERIMENTAL |
| 9 | // DO NOT USE -- FOR INTERNAL TESTING ONLY |
| 10 | |
| 11 | #ifndef sk_matrix_DEFINED |
| 12 | #define sk_matrix_DEFINED |
| 13 | |
| 14 | #include "sk_types.h" |
| 15 | |
| 16 | SK_C_PLUS_PLUS_BEGIN_GUARD |
| 17 | |
halcanary | c911906 | 2015-09-01 10:45:09 -0700 | [diff] [blame] | 18 | /** Set the matrix to identity */ |
reed | afa278e | 2014-11-24 19:11:48 -0800 | [diff] [blame] | 19 | void sk_matrix_set_identity(sk_matrix_t*); |
| 20 | |
halcanary | c911906 | 2015-09-01 10:45:09 -0700 | [diff] [blame] | 21 | /** Set the matrix to translate by (tx, ty). */ |
reed | afa278e | 2014-11-24 19:11:48 -0800 | [diff] [blame] | 22 | void sk_matrix_set_translate(sk_matrix_t*, float tx, float ty); |
halcanary | c911906 | 2015-09-01 10:45:09 -0700 | [diff] [blame] | 23 | /** |
| 24 | Preconcats the matrix with the specified translation. |
| 25 | M' = M * T(dx, dy) |
| 26 | */ |
reed | afa278e | 2014-11-24 19:11:48 -0800 | [diff] [blame] | 27 | void sk_matrix_pre_translate(sk_matrix_t*, float tx, float ty); |
halcanary | c911906 | 2015-09-01 10:45:09 -0700 | [diff] [blame] | 28 | /** |
| 29 | Postconcats the matrix with the specified translation. |
| 30 | M' = T(dx, dy) * M |
| 31 | */ |
reed | afa278e | 2014-11-24 19:11:48 -0800 | [diff] [blame] | 32 | void sk_matrix_post_translate(sk_matrix_t*, float tx, float ty); |
| 33 | |
halcanary | c911906 | 2015-09-01 10:45:09 -0700 | [diff] [blame] | 34 | /** Set the matrix to scale by sx and sy. */ |
reed | afa278e | 2014-11-24 19:11:48 -0800 | [diff] [blame] | 35 | void sk_matrix_set_scale(sk_matrix_t*, float sx, float sy); |
halcanary | c911906 | 2015-09-01 10:45:09 -0700 | [diff] [blame] | 36 | /** |
| 37 | Preconcats the matrix with the specified scale. |
| 38 | M' = M * S(sx, sy) |
| 39 | */ |
reed | afa278e | 2014-11-24 19:11:48 -0800 | [diff] [blame] | 40 | void sk_matrix_pre_scale(sk_matrix_t*, float sx, float sy); |
halcanary | c911906 | 2015-09-01 10:45:09 -0700 | [diff] [blame] | 41 | /** |
| 42 | Postconcats the matrix with the specified scale. |
| 43 | M' = S(sx, sy) * M |
| 44 | */ |
reed | afa278e | 2014-11-24 19:11:48 -0800 | [diff] [blame] | 45 | void sk_matrix_post_scale(sk_matrix_t*, float sx, float sy); |
| 46 | |
| 47 | SK_C_PLUS_PLUS_END_GUARD |
| 48 | |
| 49 | #endif |