Image Unit Processing Interface. INFO: This is a mirror from GitHub. github.com/sona-tau/iupi

Merge branch 'main' of github.com:diego-est/iupi

+8 -8
+8 -8
CFG.md
··· 21 21 <rotateR> ::= <^ 22 22 <rotateL> ::= >^ 23 23 <mirror> ::= <> 24 - <transpose> ::= 24 + <transpose> ::= & 25 25 26 26 <set> ::= (<colorHex>) | (<colorU8>) 27 27 <copyL> ::= 28 28 <copyR> ::= 29 29 <swap> ::= 30 30 31 - <moveR> ::= 32 - <moveL> ::= 33 - <moveD> ::= 34 - <moveU> ::= 31 + <moveR> ::= -> 32 + <moveL> ::= <- 33 + <moveD> ::= \/ 34 + <moveU> ::= ^ 35 35 36 36 <printInt> ::= 37 37 <printChar> ::= 38 38 <receiveByte> ::= 39 - <receiveRGB> ::= 39 + <receiveRGB> ::= "' | '" 40 40 41 41 <float> ::= <digits>.<digits> 42 42 <colorHex> ::= #<hex><hex><hex><hex><hex><hex> 43 - <colorU8> ::= 43 + <colorU8> ::= <U8>, <U8>, <U8> 44 44 <digits> ::= <digit> | <digit><digits> 45 45 <digit> ::= 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 46 46 <hex> ::= A | B | C | D | E | F | <digit> 47 - <U8> ::= 47 + <U8> ::= 48 48 49 49 <if> ::= <set>?{<expr>} 50 50 <while> ::= <set>#{<expr>}