/* Class representing an empty scribble */
import java.awt.Color;

import objectdraw.*;

public class EmptyScribble implements ScribbleInterface {
        public EmptyScribble() {}

        // point is never in an empty scribble!
        public boolean contains(Location point) {
                return false;
        }

        // nothing to move, so do nothing!
        public void move(double dx, double dy) {}
}
