package lectures.composite.annotations;
import util.annotations.WebDocuments;

import lectures.composite.objects_shapes.ImageWithHeight;
import lectures.composite.objects_shapes_extra.FancyCartesianPlane;

@WebDocuments({"Lectures/CompositeAnnotations.pptx", "Lectures/CompositeAnnotations.pdf", "Videos/CompositeAnnotations.avi"})
public interface NotAPoint {
    public FancyCartesianPlane getFancyCartesianPlane();
    public ImageWithHeight getShuttleImage();
    public int getCartesianX();
    public void setCartesianX(int newVal);
    public int getCartesianY();
    public void setCartesianY(int newVal);
}