Bézier Clock
31–40 of 73 posts
Re: Bézier Clock
#32Re: Bézier Clock
#33My crappy addition to clocks: http://myoldclock.appspot.com/ Did it in about 12 hours for a Google I/O competition 3 years ago. It's a countdown clock instead of a normal clock, but similar idea.
Re: Bézier Clock
#34I propose a new sport: Bezier clock golf, in which we try to construct a readable clock using the fewest number of control points. Current par is 5.
cool challenge, but how do you do less than 5 bezier points for the numeral 8?
Re: Bézier Clock
#35My crappy addition to clocks: http://myoldclock.appspot.com/ Did it in about 12 hours for a Google I/O competition 3 years ago. It's a countdown clock instead of a normal clock, but similar idea.
Re: Bézier Clock
#36Re: Bézier Clock
#37Uncaught SecurityError: Failed to read the 'localStorage' property from 'Window': Access is denied for this document. processing.js:9503
Not sure why processing.js needs local storage to work.
Re: Bézier Clock
#38Earlier quoted context omitted.
cool challenge, but how do you do less than 5 bezier points for the numeral 8?
Actually you just need 2 for creating an 8 if it's a closed spline. 3 If open.
Re: Bézier Clock
#39I'm curious about the code organization: it seems that processing.js contains both the application code for the clock as well as the libraries for interpreting the Processing code. Is that true? Is that the best organization? Would it not be better to have have a processing.js which is the interpreter/libraries and a bezier_clock.js?