-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
When I first started running loops in sketching, the performance felt sluggish and I wondered if there was a bug. Once I checked the documentation, I learned that 10 was the intended default, and I started using set-frame-rate! in my sketches. Would it be worthwhile to have a higher default? Maybe it might improve the experience for other new and naive users.
#lang sketching
(define (setup)
(size 480 120)
(smoothing 'smoothed)
(background 200)
(fill 0 102)
(no-stroke)
)
(define (draw)
(ellipse mouse-x mouse-y 9 9)
)
aaglenn
Metadata
Metadata
Assignees
Labels
No labels