zhao.algorithmMagic.operands.coordinate.Coordinate3D Maven / Gradle / Ivy
package zhao.algorithmMagic.operands.coordinate;
/**
* 三维坐标接口,所有的三维坐标的父类。
*
* Three-dimensional coordinate interface, the parent class of all three-dimensional coordinates.
*
* @param 左边的实现类类型
* @param 坐标存储的数值类型
*/
public interface Coordinate3D extends Coordinate2D {
/**
* @return Z轴的数值
*
* The value of the Z axis
*/
value getZ();
}