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

inspired.pdf.unbox.base.Column Maven / Gradle / Ivy

There is a newer version: 0.9.3
Show newest version
package inspired.pdf.unbox.base;

public class Column {

    private final float width;

    public Column(float width) {
        this.width = width;
    }

    public float width() {
        return width;
    }

    public Column scale(float scale) {
        return new Column(width * scale);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy