Update matrix rotation README.

This commit is contained in:
Oleksii Trekhleb 2018-07-06 11:52:34 +03:00
parent 75133592bb
commit 57378c5e19

View File

@ -80,9 +80,29 @@ diagonal top-right/bottom-left rotation along with horizontal
rotation.
```
A B C A - - . . A
/ / --> B - - --> . . B
/ . . C - - . . C
Let's say we have a string at the top of the matrix:
A B C
• • •
• • •
Let's do top-right/bottom-left diagonal reflection:
A B C
/ / •
/ • •
And not let's do horizontal reflection:
A → →
B → →
C → →
The string has been rotated to 90 degree.
• • A
• • B
• • C
```
## References