Skip to content

Commit

Permalink
Changed flags
Browse files Browse the repository at this point in the history
  • Loading branch information
esimov committed Apr 21, 2020
1 parent b8e5db4 commit ee33a44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/triangle/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ func main() {
destination = flag.String("out", "", "Destination")
blurRadius = flag.Int("blur", 4, "Blur radius")
sobelThreshold = flag.Int("sobel", 10, "Sobel filter threshold")
pointsThreshold = flag.Int("points", 20, "Points threshold")
maxPoints = flag.Int("max", 2500, "Maximum number of points")
wireframe = flag.Int("wireframe", 0, "Wireframe mode")
pointsThreshold = flag.Int("th", 20, "Points threshold")
maxPoints = flag.Int("pts", 2500, "Maximum number of points")
wireframe = flag.Int("wf", 0, "Wireframe mode")
noise = flag.Int("noise", 0, "Noise factor")
strokeWidth = flag.Float64("stroke", 1, "Stroke width")
isSolid = flag.Bool("solid", false, "Solid line color")
Expand Down

0 comments on commit ee33a44

Please sign in to comment.