Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the notation in Transform2D's documentation #524

Merged
merged 1 commit into from
May 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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