-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
create contextual number generator #1
Comments
What are your thoughts about using floats for color components? In PB, I On Sat, Oct 31, 2015 at 12:39 PM, Yong Joseph Bakos <
Director, Center of Creative Computation 214.768.4625 Looking for great gifts for smart people... The alternative CS I textbook for humans: Intermediate level Creative Coding and Processing Book: First major language reference on Processing: [image: --] |
I like floats rather than 0 - 255. On Oct 31, 2015, at 12:52 PM, Ira Greenberg notifications@github.com wrote:
|
Add chaotic width and height. References #1.
Add tests for default width and height state. Add stub for ChaosSketch test. References #1.
Create a number generator that returns values based on input and context. For example, color adjustments should be bounded to 0 and 255, and perhaps adjusted relative to the scale of the original number.
int newRedValue = generator.color(10); // between 0 and 30
int newGreenValue = generator.color(100); // between 50 and 150
The generator should return different values based on context. For example, size ranges should be different than stroke weight ranges.
The text was updated successfully, but these errors were encountered: