All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mindee.geometry.MinMax Maven / Gradle / Ivy

The newest version!
package com.mindee.geometry;
import lombok.Getter;

/** Minimum and maximum values. */
@Getter
public class MinMax {
  private final Double min;
  private final Double max;

  public MinMax(Double min, Double max) {
    this.min = min;
    this.max = max;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy