/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package coords;

/**
 *
 * @author Alexander The 1st
 */
public class PolygonC extends DCoords{
    
    protected Coords[] boundings;
    
    public PolygonC(Coords originA, Coords originO, Coords[] boundingCoords){
        super(originA, originO);
        //originA == The origin of the Polygon itself
        //originO == The origin that the origin of the Polygon is offset from
        //if originO is a DCoords itself that has an origin point that refers 
        //to java window (0, 0), that is totally expected and okay.
        //In fact, that's the original intended design.
        boundings = boundingCoords;
    }
}
