dk.apaq.printing.core.Justification Maven / Gradle / Ivy
package dk.apaq.printing.core;
/**
*
* @author michaelzachariassenkrog
*/
public class Justification {
public static double getJustifedWidth(Paper paper, Margin margin) {
return paper.getWidth() - margin.getLeft() - margin.getRight();
}
public static double getJustifiedHeight(Paper paper, Margin margin) {
return paper.getHeight() - margin.getTop() - margin.getBottom();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy