石墨消解仪后端服务
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.

23 lines
414 B

  1. package com.iflytop.gd.system.models;
  2. import lombok.Getter;
  3. @Getter
  4. public class Point3D {
  5. private final Integer x;
  6. private final Integer y;
  7. private final Integer z;
  8. public Point3D(Integer x, Integer y, Integer z) {
  9. this.x = x;
  10. this.y = y;
  11. this.z = z;
  12. }
  13. public Point3D(Integer x, Integer y) {
  14. this.x = x;
  15. this.y = y;
  16. this.z = 0;
  17. }
  18. }