1. Homepage
  2. Programming
  3. CS 418 Interactive Computer Graphics Assignment - Dancing Logo

CS 418 Interactive Computer Graphics Assignment - Dancing Logo

Engage in a Conversation
USUniversity of IllinoisCS418CS 418Dancing LogoJavascriptInteractive Computer Graphics

University of Illinois Logo c – Dancing Logo CS 418 – Dancing Logo home content submissions CourseNana.COM

TABLE OF CONTENTS TABLE OF CONTENTS ⏷ ⏷ Purpose Overview Required (50 points) Optional Grading Rubric CourseNana.COM

Purpose This assignment is unlike MP1 in two keys ways. CourseNana.COM

  1. It was unanimously identi fied as the easiest MP of the semester by last semester ’s students. CourseNana.COM

  2. The primary goal is for you to explore. Other MPs have speci fic algorithms to implement and tasks to Overview Yaccomplish; this MP is mostly about trying things out. Tasks are vague and grade at full credit if they make a reasonable approximation of their description. Largely the goal is familiarity with writing Javascript, WebGL2 and how they work together. Later MPs will test you ability to do specific things with WebGL2. ou will submit a webpage that has One canvas An animation of the majestic and inspiring University of Illinois logo Additional animations selectable using radio buttons All animations are 2D (3D will be added in later assignments) As with the W ebGL warmup , you’ll submit an HTML file and any number of js, css, glsl, and json files. No image files are permitted for this assignment. Also submit a file named implemented.txt listing any optional parts you believe you completed. You are welcome to use a JavaScript math library , such as the one used in in- class examples or others you might know . As with most assignments, this is divided into required and optional parts. For full credit, you need all the required parts of each assignment and an accumulated average of 50 optional points per assignment. This assignment, like all other assignments, is governed by the common components of MPs . Required (50 points) HTML layout Your HTML file must contain CourseNana.COM

  3. Compliance content, including DOCTYPE , lang , charset , and title . CourseNana.COM

  4. At least one script element in the head , and none outside the head CourseNana.COM

  5. One canvas element. CourseNana.COM

  6. On radio button for the required part, plus more for optional parts, all with the same name attribute. CourseNana.COM

  7. A label for each radio button briefly describing what it will display . These should be a label from this CourseNana.COM

  8. page (such as Required or GPU-based vertex movement ) followed by a colon and a short CourseNana.COM

  9. description of what will be displayed (such as Required: The "I" logo spinning clockwise while moving along a counterclockwise path ). The first radio button defaults to being selected. We have an example HTML file that meets these requirements you might find a useful reference or starting point: radios.html . CourseNana.COM

Aside —   About requestAnimationFrame Each call to requestAnimationFrame queues a function to be called in the future and returns a handle to that function. To have an animation, we need to ensure there is always one (and only one) pending function requested by requestAnimationFrame . If we have fewer than one, we don’t get an animation. If we have more than one, the browser tries to do several things at once and will slow down and eventually freeze. When we have dif ferent animations we could use, we have to approaches to ensure the only-one rule: When switching, cancelAnimationFrame what used to be pending and requestAnimationFrame the new callback or Have just one function that requestAnimationFrame s itself and dispatches to the right function for the current animationfunction draw1(milliseconds) { // ... window.pending = requestAnimationFrame (draw1) } function draw2(milliseconds) { // ... window.pending = requestAnimationFrame (draw2) } function radioChanged () { let chosen = document .querySelector ('input[name="example"]:checked' ).value cancelAnimationFrame (window.pending) window.pending = requestAnimationFrame (window['draw'+chosen]) } function draw1(milliseconds) { // ... does not call requestAnimationFrame Either approach can work, but you can’t mix-and-match: pick one or the other . Javascript style Your javascript must break work into reasonable chunks, either as functions with meaningful names (preferred) or using whitespace and comments to separate parts of computation. Comments should follow the Google JS commenting style . At a minimum, have a comment preceding each function, preferably in JSDoc style ; additional comments are also encouraged. 2D model of logo Make a reasonable polygonal approximation of the University of Illinois logo. No need to model the curves where the vertical bar meets the serifs. According to the Office of Strategic Marketing and Branding , the logo has RGB 255/95/5, which converted to 0– 1 colors used by W ebGL is . Sometimes the logo has a blue outline; if you wish to do that it should be RGB 19/41/75 meaning . You should create this model by hand, such as by drawing the logo on graph paper . The by-hand requirement isn’t something we’ll even try to enforce or grade, but doing it that way will help build your brain’ s ability to convert between shapes and coordinates, a valuable skill in graphics. Aside —   A process for creating 2D models by hand CourseNana.COM

  1. Draw the shape on graph paper
  2. Put a bold dot at each corner of the shape
  3. Number the points in any order , starting with 0
  4. Pick an origin and scale for the graph paper
  5. Create an array of vertices in numbered order , using coordinates from the graph paper
  6. Fill in a triangle on the graph paper and add the number of its three vertices to the triangles index array
  7. Repeat step 6 with another triangle, and then another , until the entire shape is filled in WebGL displays things between and in and . If you modeled the logo with dif ferent bounds, you can adjust it in the vertex shader as e.g. by finding a scaling factor s and of fsets dx and dy and using them as} function draw2(milliseconds) { // ... does not call requestAnimationFrame } function timestep (milliseconds) { let chosen = document .querySelector ('input[name="example"]:checked' ).value if (chosen == 1) draw1(milliseconds) else if (chosen == 1) draw2(milliseconds) requestAnimationFrame (timestep) } ( r, g, b)=(1,0.373,0.02) ( r, g, b)=(0.075,0.16,0.292) −1+1 x y Logo dance The logo should move about the canvas because its vertex positions are being modified by a matrix that varies with time. This means having animation by the drawing function requestAnimationFrame( itself) having a uniform mat4 in your vertex shader assigning the matrix a new value each frame Your animation should look smooth (no sudden jumps from one image to another) and should do at least two of moving the logo rotating the logo changing the logo’ s size Do not squish or stretch the logo: any size changes should be uniformly applied to all dimensions. Another animation Picking another radio button should show a dif ferent moving W ebGL image (not the logo) in the canvas. For the required part, this can be anything else, such as an example from class or the point cluster from the warmup Optional You should have one radio button for the required part, and one radio button for each optional part you implement (labeled so that we can tell which part it was). Each animation (other than the required one) should show of f a different optional part. CPU-based vertex movement (15 points) Add an animation that uses the I logo but changes the vertex positions in the buf fer every frame. They should change individually in a way not achievable using a matrix (i.e. not just rotate, scale, translate, or perspective). This involves two parts: some Javascript code that creates or updates the list of positions in a Float32Array in CPU memory and connecting sending it to the GPU. How to send new data to the GPU every frame GPU-based vertex movement (10 points) Add an animation that uses the I logo but changes the vertex positions in the buf fer every frame. They should change individually in a way not achievable using a matrix (i.e. not just rotate, scale, translate, or perspective). This involves a vertex shader that uses gl_VertexID and a time-varying uniform as well as the model- specific position attributes to position each vertex. Only the vertex shader needs to change from the required portion. Collisions (15 points) Add an animation of two logos (or other shapes) colliding, with collision detection and response. The response may be either physics-based or stylized as long as the motion of the logos visibly changes upon collision.gl_Position = vec4(vert.xs + dx, vert. ys + dy, 0, 1);
  8. Psychedelic (15 points) Draw a quad that covers the whole canvas and use a fragment shader to create some kind of colorful pulsing pattern. Two example animations are shown here; yours needn’t look like either of them but should similarly change with time, fill the screen with color , and vary nonlinearly across the screen instead of being interpolated from vertex colors. Walking (15 points) Draw a stick figure walking Mouse response (10 or 20 points) Have the motion respond to the mouse in a sensible way: a logo moves towards or away from the mouse, follows a path similar to the mouse’ s path, etc. If the response is immediate (for example, if jerky mouse motions results in jerky animations) then this is worth 10 points. If the response uses the mouse but also has some sense of momentum or gradual change, it is worth 20 points. Grading Rubric Required (50 points) HTML style (10 points) doctype lang charset title script in head canvas radio buttons that work labels named as required defaults to selecting the required animation Javascript style (5 points) readable chunks with comments Logo model (10 point) made of polygons looks like a capital I Required animation (23) animated CourseNana.COM

  9. by changing a mat4 each frame resulting in smooth motion including the combination of two motion types Radio button works (2) can leave and return to required animation Optional CPU-based vertex movement Vertices are moving individually in a way that cannot be created by multiplying them all by the same matrix Code inspection shows this is happening by changing the vertex locations in the buf fer sent to the GPU GPU-based vertex movement Vertices are moving individually in a way that cannot be created by multiplying them all by the same matrix Code inspection shows this is happening by modifying vertex locations in the vertex shader Collisions Two or more moving logos or other objects Paths cause them to come into contact with one another Something (anything) visibly happens when they touch Psychedelic Boring geometry and vertex shader fills the screen with a large square Interesting fragment shader adds pulsing colors to fragments Walking something resembling a stick figure with moving legs Mouse Lower point total moving the mouse changes how the animation progresses Rest of points always moving in a smooth way with no sudden jerks or jumps when the mouse moves CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
US代写,University of Illinois代写,CS418代写,CS 418代写,Dancing Logo代写,Javascript代写,Interactive Computer Graphics代写,US代编,University of Illinois代编,CS418代编,CS 418代编,Dancing Logo代编,Javascript代编,Interactive Computer Graphics代编,US代考,University of Illinois代考,CS418代考,CS 418代考,Dancing Logo代考,Javascript代考,Interactive Computer Graphics代考,UShelp,University of Illinoishelp,CS418help,CS 418help,Dancing Logohelp,Javascripthelp,Interactive Computer Graphicshelp,US作业代写,University of Illinois作业代写,CS418作业代写,CS 418作业代写,Dancing Logo作业代写,Javascript作业代写,Interactive Computer Graphics作业代写,US编程代写,University of Illinois编程代写,CS418编程代写,CS 418编程代写,Dancing Logo编程代写,Javascript编程代写,Interactive Computer Graphics编程代写,USprogramming help,University of Illinoisprogramming help,CS418programming help,CS 418programming help,Dancing Logoprogramming help,Javascriptprogramming help,Interactive Computer Graphicsprogramming help,USassignment help,University of Illinoisassignment help,CS418assignment help,CS 418assignment help,Dancing Logoassignment help,Javascriptassignment help,Interactive Computer Graphicsassignment help,USsolution,University of Illinoissolution,CS418solution,CS 418solution,Dancing Logosolution,Javascriptsolution,Interactive Computer Graphicssolution,