public boolean does_fit_inside()

in thumbnails4j-core/src/main/java/co/elastic/thumbnails4j/core/Dimensions.java [107:109]


    public boolean does_fit_inside(Dimensions other){
        return this.x <= other.getX() && this.y <= other.getY();
    }