public interface Shape {

	/*
	 * Purpose: get the total surface area of this shape
	 * Parameters: none
	 * Returns: double - the surface area of the shape
	 */
	public double surfaceArea();
	
}