21 lines
641 B
Markdown
21 lines
641 B
Markdown
# CSCE 4230 Computer Graphics
|
|
## Homework 1
|
|
|
|
### Problem Statement
|
|
Modify the ClickedPoints example as follow:
|
|
|
|
1. Change the canvas size from 400x400 to 600x400.
|
|
|
|
2. Change the clearing color (background color) from black to grey level 0.3. That is, use 0.3 for for each of the RGB values.
|
|
|
|
3. Change the fragment color (point color) from red to yellow (with maximum intensity).
|
|
|
|
4. Change the point size from 10 to 25.
|
|
|
|
Submit both your HTML and JS on Canvas. Please do NOT put them in Zip archives or similar.
|
|
|
|
This shouldn't take very long at all to do, and is really mainly a warm-up exercise.
|
|
|
|
### Solution
|
|
|
|
```TODO: Solution``` |