Question: public void drawLine ( Graphics 2 D g 2 d , Node 2 D parent, Color color, int lineWidth ) { GeneralPath path = new

public void drawLine(Graphics2D g2d, Node2D parent, Color color, int lineWidth){
GeneralPath path = new GeneralPath();
int counter =0;
for(int i =0; i graph.getDataSize(0); i++){
double xcl = parent.transformX(graph.getDataX(i));
double ycl = parent.transformY(graph.getDataY(i));
if(i==0){
path.moveTo(xcl, ycl);
} else { path.lineTo(xcl, ycl);}
}
g2d.setColor(color);
g2d.setStroke(new BasicStroke(lineWidth));
g2d.draw(path);
}
 public void drawLine(Graphics2D g2d, Node2D parent, Color color, int lineWidth){ GeneralPath

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!