java - Drawing a "star of david" shape -
looking create star of david: 
how go in java? confused on this.
this need:
int[] xpoints = {100, 150, 200}; int[] ypoints = {100, 200, 100}; int[] ypoints2 = {175, 75, 175}; g.drawpolygon (xpoints, ypoints, 3); g.drawpolygon (xpoints, ypoints2, 3);
Comments
Post a Comment