Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
14
Task/Pentagram/Processing/pentagram.processing
Normal file
14
Task/Pentagram/Processing/pentagram.processing
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
//Aamrun, 29th June 2022
|
||||
|
||||
size(1000,1000);
|
||||
|
||||
translate(width/2,height/2);
|
||||
rotate(3*PI/2);
|
||||
fill(#0000ff);
|
||||
|
||||
beginShape();
|
||||
for(int i=0;i<10;i+=2){
|
||||
|
||||
vertex(450*cos(i*2*PI/5),450*sin(i*2*PI/5));
|
||||
}
|
||||
endShape(CLOSE);
|
||||
Loading…
Add table
Add a link
Reference in a new issue