| | |
| | | |
| | | private double rotation; |
| | | |
| | | private double xmin; |
| | | private Double xmin; |
| | | |
| | | private double ymin; |
| | | private Double ymin; |
| | | |
| | | private double ymax; |
| | | private Double ymax; |
| | | |
| | | private double xmax; |
| | | private Double xmax; |
| | | |
| | | private List<Integer> layerIds; |
| | | |
| | |
| | | this.rotation = rotation; |
| | | } |
| | | |
| | | public double getXmin() { |
| | | public Double getXmin() { |
| | | return xmin; |
| | | } |
| | | |
| | | public void setXmin(double xmin) { |
| | | public void setXmin(Double xmin) { |
| | | this.xmin = xmin; |
| | | } |
| | | |
| | | public double getYmin() { |
| | | public Double getYmin() { |
| | | return ymin; |
| | | } |
| | | |
| | | public void setYmin(double ymin) { |
| | | public void setYmin(Double ymin) { |
| | | this.ymin = ymin; |
| | | } |
| | | |
| | | public double getYmax() { |
| | | public Double getYmax() { |
| | | return ymax; |
| | | } |
| | | |
| | | public void setYmax(double ymax) { |
| | | public void setYmax(Double ymax) { |
| | | this.ymax = ymax; |
| | | } |
| | | |
| | | public double getXmax() { |
| | | public Double getXmax() { |
| | | return xmax; |
| | | } |
| | | |
| | | public void setXmax(double xmax) { |
| | | public void setXmax(Double xmax) { |
| | | this.xmax = xmax; |
| | | } |
| | | |