How to draw star in java swing using fillPolygon -


i'm having trouble setting coordinate of star there better solution this. cannot the correct shape. can me on this?

  public void star(graphics shapes) {     shapes.setcolor(color);     int[] x  = {42,52,72,52,60,40,15,28,9,32,42};     int [] y = {38,62,68,80,105,85,102,75,58,20,38};     shapes.fillpolygon(x, y, 5); } 

sun's implementation provides custom java 2d shapes rectangle, oval, polygon etc. it's not enough. there guis require more custom shapes regular polygon, star , regular polygon rounded corners. project provides more shapes used. classes implements shape interface allows user use usual methods of graphics2d fill(), draw(), , create own shapes combining them.

regular polygon star

edit:

link


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -