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

org.daisy.dotify.api.paper.Dimensions Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package org.daisy.dotify.api.paper;

/**
 * Provides two dimensional measurements in millimeters.
 *
 * @author Joel Håkansson
 */
public interface Dimensions {

    /**
     * Gets width, in mm.
     *
     * @return returns width in mm.
     */
    public double getWidth();

    /**
     * Gets height, in mm.
     *
     * @return returns height in mm.
     */
    public double getHeight();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy