package cactusServer.entities; import java.util.List; public class Plain { private double a; // 平面の方程式 ax+by+cz+d のa private double b; // 平面の方程式 ax+by+cz+d のb private double c; // 平面の方程式 ax+by+cz+d のc private double d; // 平面の方程式 ax+by+cz+d のd public Plain(double a, double b, double c, double d) { this.a = a; this.b = b; this.c = c; this.d = d; } public double getA() { return a; } public double getB() { return b; } public double getC() { return c; } public double getD() { return d; } }