RotationVector.java 365 B

1234567891011121314151617
  1. package com.zjinja.mcmod.decor.utils.model_dir_util;
  2. public class RotationVector {
  3. public int RotateX = 0;
  4. public int RotateY = 0;
  5. public int RotateZ = 0;
  6. public RotationVector(int rx, int ry, int rz){
  7. RotateX = rx % 4;
  8. RotateY = ry % 4;
  9. RotateZ = rz % 4;
  10. }
  11. public RotationVector(){
  12. this(0, 0, 0);
  13. }
  14. }