java - Drawing a "star of david" shape -


looking create star of david: enter image description here

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

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

android - Keyboard hides my half of edit-text and button below it even in scroll view -

css - Make div keyboard-scrollable in jQuery Mobile? -