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

com.github.ryanp102694.geometry.SearchRectangleObject Maven / Gradle / Ivy

The newest version!
package com.github.ryanp102694.geometry;


public class SearchRectangleObject extends AbstractRectangleObject {
    public SearchRectangleObject(){
        this.setX(0.0);
        this.setY(0.0);
        this.setW(0.0);
        this.setH(0.0);
    }

    public SearchRectangleObject(Double x, Double y, Double w, Double h){
        super(x,y,w,h);
        this.setType("structure");
        this.setId("testId");
    }

    public SearchRectangleObject(Double x, Double y, Double w, Double h, String id){
        super(x,y,w,h);
        this.setId(id);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy