package lectures.composite.objects_shapes;
import util.annotations.WebDocuments;
import lectures.graphics.Line;
import lectures.graphics.StringShape;
@WebDocuments({"Lectures/CompositeObjectsShapes.pptx", "Lectures/CompositeObjectsShapes.pdf", "Videos/CompositeObjectsShapes.avi"})
public interface CartesianPlane {
public int getAxesLength();
public void setAxesLength(int anAxesLength);
public Line getXAxis();
public Line getYAxis();
public StringShape getXLabel();
public StringShape getYLabel();
}