IT201_Project02_Haitham_Awad
I created a painting tool that allows the user to paint primitives either one bunch at a time (left click) or by dragging(right click). It allows the user to change the color of the primitives, rotate the camera around the scene, make the primitives bigger/smaller, randomize the type of primitives, or rotate the primitives themselves. The new features include:
Feature 1: Invert Primitives Around Center (easy to see from top view)
Input: Button Click
Process: Find the relative position of each primitive to the center of the painting area. Negate this value. For example, if the center has position (1,1,1) and the primitive is (5,6,3), the primitive will get moved to (-4,-5,-2)
Output: Primitives are moved to inverted location
Difference: I do not think we did anything like this
Feature 2: Orbit Primitives Around Center
Input: Check box
Process: Create an object you want to orbit and use the rotate around function to orbit in the x, y, and z direction:
Output: Primitives orbit the center as if it were a planet
Difference: I also believe this one is unique completely
Feature 3: Continuously Change Primitive Color
Input: Check box
Process: Generate random increments for each aspect of color (r,g,b) and set all primitives to this continuously updating color. Red, green, and blue are all incremented at different rates to allow for a smoother transition of colors.
Difference: I also believe this is unique
Feature 4: Top View of Primitives Input: Button Click
Process: Move the camera up and forward and then rotate it down. Reverse this process when the button is clicked again to move it back to the original position
Difference: Top view rotating the camera instead of small increments like example
Feature 5: Sun
Input: Time the user is running the game
Process: A sphere object rises from 6AM to 12PM and goes down from 12PM to 6PM. It find how far along it is in each time frame and sets the height to be proportional to what time it is. If it is from 6PM to 6AM, the sun is not visible since it is night time.
Difference: Time was not used to do something like this in examples