I can't understand why I'm getting the following error - cannot find symbol - class Line2D
- when I try to compile this code:
import java.awt.*;
public class KochSegment
{
public Line2D base = new Line2D(); public Line2D[] Lines = new Line2D[4]; //error is on this line
etc.
}