
net.sourceforge.plantuml.ScaleHeight Maven / Gradle / Ivy
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml;
public class ScaleHeight extends ScaleProtected implements Scale {
private final double maxHeight;
public ScaleHeight(double maxHeight) {
this.maxHeight = maxHeight;
}
public double getScaleInternal(double width, double height) {
return maxHeight / height;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy