You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
215 B

  1. #pragma once
  2. #include "quantum.h"
  3. #define LAYOUT_ortho_3x3( \
  4. k00, k01, k02, \
  5. k10, k11, k12, \
  6. k20, k21, k22 \
  7. ) { \
  8. { k00, k01, k02 }, \
  9. { k10, k11, k12 }, \
  10. { k20, k21, k22 } \
  11. }