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

pythagoras.i.IDimension Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
//
// Pythagoras - a collection of geometry classes
// http://github.com/samskivert/pythagoras

package pythagoras.i;

/**
 * Provides read-only access to a {@link Dimension}.
 */
public interface IDimension extends Cloneable
{
    /**
     * Returns the magnitude in the x-dimension.
     */
    int width ();

    /**
     * Returns the magnitude in the y-dimension.
     */
    int height ();

    /**
     * Returns a mutable copy of this dimension.
     */
    Dimension clone ();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy