This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import processing.svg.*; | |
| // paramater | |
| final int canvas_size = 1000; | |
| final String out_file = "snowflake.svg"; | |
| final int num_sides = 10; | |
| final float outer_radius = 350; | |
| final float hub_radius = 40; |
NewerOlder