Functional Problem Solving (CSC 151 2015S) : EBoards
Primary: [Front Door] [Schedule] - [Academic Honesty] [Disabilities] [Email] - [FAQ] [Teaching & Learning] [Grading] [Taking Notes] [Rubric] - [Calendar]
Current: [Assignment] [EBoard am] [EBoard pm] [Lab] [Outline] [Reading]
Sections: [Assignments] [EBoards am] [EBoards pm] [Labs] [Outlines] [Readings] - [Examples] [Handouts]
Reference: [Setup] [VM] [Errors] - [Functions A-Z] [Functions By Topic] - [Racket] [Scheme Report (R5RS)] [R6RS] [TSPL4]
Related Courses: [Davis (2013F)] [Rebelsky (2014F)] [Weinman (2014F)]
Misc: [Submit Questions] - [SamR] [Glimmer Labs] [CS@Grinnell] [Grinnell] - [Book Office Hours] - [Issue Tracker (Course)]
Overview
Will you add my cool event above?
Done.
How do I generalize my blend?
Start Mid End
Column 0 width/2 width
BlaBlu 0 255
?? 128 255
?? 64 196
How can I check my pixel values for a blend?
> (define blend (horiz-black-blue-blend 100 100))
> (map (lambda (col) (irgb->rgb-list (image-get-pixel blend col 50)))
(iota 100))
Many of you computed a multiplier using (/ 256 width) (/ 255 width). Is there a problem with that approach? (Hint: What if width is 2?)