Skip to content

Commit

Permalink
Fix the notation in Transform2D's documentation. (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
nical committed May 1, 2024
1 parent 6b2aece commit 238a5ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/transform2d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ use serde::{Deserialize, Serialize};
/// transformations we are interested in implicitly defined:
///
/// ```text
/// | m11 m12 0 | |x| |x'|
/// | m21 m22 0 | x |y| = |y'|
/// | m31 m32 1 | |1| |w |
/// | m11 m21 m31 | |x| |x'|
/// | m12 m22 m32 | x |y| = |y'|
/// | 0 0 1 | |1| |1 |
/// ```
///
/// When translating Transform2D into general matrix representations, consider that the
Expand Down

0 comments on commit 238a5ee

Please sign in to comment.