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

pythagoras.f.Dimensions 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.f;

/**
 * Dimension-related utility methods.
 */
public class Dimensions
{
    /**
     * Returns a string describing the supplied dimension, of the form widthxheight.
     */
    public static String dimenToString (float width, float height) {
        return width + "x" + height;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy