from cs1graphics import * CS1Point = Point # avoid name conflict between cs1graphics.Point and our Point module import Point import random import DCEL import geomutil def computeDelaunay(points, animationWidth=None): """Return a DCEL representing the delaunay triangulation of given container of Points. animationWidth is the width of a canvas for animation (default None designates no animaion) """ return DCEL.DCEL() # stub