/* * The pie chart in the visuals part of Project Grader. It consists of * whether or not it is specific (A, A-, A+), the curve of the class, and * a collection of angles in the pie chart. */ package Visual; import java.util.Collection; class PieChart { boolean isSpecific; Curve curve; Collection angles; }