Newer
Older
CactusServer / src / main / java / cactusServer / entities / Plain.java
r-isitani on 11 Jun 2018 815 bytes 不要なimport文を除去.
  1. package cactusServer.entities;
  2.  
  3. public class Plain {
  4. private double a; // 平面の方程式 ax+by+cz+d のa
  5. private double b; // 平面の方程式 ax+by+cz+d のb
  6. private double c; // 平面の方程式 ax+by+cz+d のc
  7. private double d; // 平面の方程式 ax+by+cz+d のd
  8.  
  9. private Plain() {
  10. // JSONDecode時の呼び出し用
  11. }
  12.  
  13. public Plain(double a, double b, double c, double d) {
  14. setA(a);
  15. setB(b);
  16. setC(c);
  17. setD(d);
  18. }
  19.  
  20. public double getA() {
  21. return a;
  22. }
  23.  
  24. public double getB() {
  25. return b;
  26. }
  27.  
  28. public double getC() {
  29. return c;
  30. }
  31.  
  32. public double getD() {
  33. return d;
  34. }
  35.  
  36. public void setA(double a) {
  37. this.a = a;
  38. }
  39.  
  40. public void setB(double b) {
  41. this.b = b;
  42. }
  43.  
  44. public void setC(double c) {
  45. this.c = c;
  46. }
  47.  
  48. public void setD(double d) {
  49. this.d = d;
  50. }
  51. }