关于算法:COMP27112视学计算

29次阅读

共计 4981 个字符,预计需要花费 13 分钟才能阅读完成。

Introduction to Visual Computing
Coursework Assignment 1
Simple Shading
Tim Morris
Introduction
The aim of this exercise is to render a spinning, shaded cuboid on screen. You’ll need a web
browser to display the output and a simple text editor1 to create the html files you’ll need.
This and the other pieces of coursework are each worth 7.5% of the unit’s assessment, this
means you should spend no more than about 7.5 hours (a day?) on each one.
Getting Started
The following code will set up a basic webpage for using three.js. Type it into your chosen
text editor, save it as an html or htm file and load it into a browser. You should see very
little – a blank page with no title. This skeleton will also be the starting point of the lab 2
exercise. Note that if you copy and paste this, the quotation marks will change and the
hyphen will be removed, so the code won’t work.
<html>
<head>
<style>
body {
margin 0;
overflow: hidden;
}
</style>
</head>
<body>
<script type =“module”>
import * as THREE from
“https://web.cs.manchester.ac….”;

// Your Javascript will go here.
</script>
</body>
</html>
1 You should ensure that your text editor saves your html files as plain text. Some editors (e.g. TextEdit on the
Mac add all kinds of stuff to what you think is a plain html file, meaning that you just see the text of your file
when you open it in your browser. Don’t forget to give your files the correct extension.
Creating the Scene
To be able to display anything using three.js, you need a scene, a camera and a renderer.
The scene defines what you’ll see, the camera defines the viewpoint, and the renderer
defines the look and feel of what’s on the screen. Add the following code to achieve this.
You can either type this directly under“Your Javascript will go here”, or insert a call to an
initialisation function and write the code as the body of that function.
scene = new THREE.Scene();
camera = new THREE.PerspectiveCamera(75, window.innerWidth
/ window.innerHeight, 0.1, 1000 );
camera.position.z = 5;
renderer = new THREE.WebGLRenderer();
renderer.setClearColor(0x000000, 1.0);
renderer.setSize(window.innerWidth, window.innerHeight);
document.body.appendChild(renderer.domElement);
shaderCube();
If you choose the first option, you’ll need the keyword“const”in front of the three
variable names. If you choose the second option you’ll need to insert the following after the
import statement.
var camera, scene, renderer;
(Which is the better software engineering practice?)
shaderCube() is a function I’ve used which will define the cube and add it to the scene.
Its body is defined in the following section.
Note that this snippet of code sets up a WebGL object for rendering the scene. Most
modern browsers support WebGL, but there are exceptions. You can check out browser
compatibility at https://caniuse.com/webgl. There are alternative renderers if your browser
isn’t in this list, they involve downloading additional code.
Adding the Cube
The final part is to add the cube itself. At the moment it will be unshaded and static. Add
another few variables: geometry, mesh, material. Add the following code to the
end of the initialising code/function :
var geometry = new THREE.BoxGeometry(2, 1, 1);
var material = new THREE.ShaderMaterial({
fragmentShader: fragmentShader(),
vertexShader: vertexShader(),
})
mesh = new THREE.Mesh(geometry, material);
scene.add(mesh)
This code has defined colours for the faces of the cube, and locations for the vertices. It’s
added the definition of the cube into something called a“mesh”and added the mesh to a
“scene”. Add stub functions for fragmentShader() and vertexShader(). The
vertex shader will determine what the geometry will look like, the fragment shader
determines the resulting colour. The fragment shader is always called AFTER the vertex
shader. You can load this into your browser, but you’ll still see nothing: nothing has been
rendered yet.
Animation
Add a function called animate(), and call it after the call to the initialisation function.
The body of the function should have the following lines
renderer.render(scene, camera);
requestAnimationFrame(animate);
This will result in a static, uniformly shaded cuboid.
Rotation
Rotate the cuboid by adding the following to the animate() function:
mesh.rotation.x += 0.011;
mesh.rotation.y += 0.013;
Shading
Add the following to the body of vertexShader():
return `
vec4 p;
varying vec3 vposInterpolated;
void main() {
p = projectionMatrix modelViewMatrix vec4(position,
1.0);
gl_Position = p;
vposInterpolated = p.xyz;
}
`
Note that position is a default vertex attribute representing the vertices
And add the following to the body of fragmentShader():
return `
varying vec3 vposInterpolated;
void main() {
gl_FragColor = vec4(vposInterpolated, 1.0);
}
`
Queries
Research the answers to the following questions. Insert your answers as comments in the
relevant places of your code.

  1. What is the purpose of the four arguments of the PerspectiveCamera function?
  2. What happens when you increase or decrease the numerical values?
  3. What is the purpose of the value of camera.position.z?
  4. What happens when you increase or decrease the value?
  5. What happens when the values of the arguments to renderer.setSize() are
    changed?
  6. What is the effect of changing the three arguments of BoxGeometry called in
    shaderCube()?
  7. How will you speed up the cuboid’s motion?
  8. How would you change the cuboid’s colour?
    Submission
    Once you have a working solution, simply ZIP and submit the html file to the Lab 1 area in
    Blackboard; Blackboard doesn’t allow HTML files to be submitted for security reasons. Don’t
    forget to add your answers to this file.
    Marking Scheme
    A working app:
    Cube is generated
    Cube is coloured
    Cube rotates
  9. marks:
    2 marks
    2 marks
    2 marks
    Question 1 2 marks
    Question 2 2 marks
    Question 3 1 mark
    Question 4 1 mark
    Question 5 2 marks
    Question 6 2 marks
    Question 7 2 marks
    Question 8 2 marks
    Total 20 marks
正文完
 0