精品深夜AV无码一区二区_伊人久久无码中文字幕_午夜无码伦费影视在线观看_伊人久久无码精品中文字幕

代做COMP27112、代寫Java語言程序

時間:2024-03-08  來源:  作者: 我要糾錯



Introduction to Visual Computing
Coursework Assignment 2
Sun, Planet and Moon
Tim Morris
Introduction
The aim of this exercise is to render a simple solar system with one moon orbiting one
planet orbiting one sun. As with the previous exercise, you’ll need a web browser to display
the output and a simple text editor1 to create the html file you’ll need.
This piece of work contributes half of the coursework assessment. We suggest that you
should not spend more than 15 hours in total completing Assignments 1 and 2.
Getting Started
Start off with the same code as last time for creating the basic webpage. Under “// Your
Javascript will go here.” you’ll add any global variables and calls to two
functions, init() and animate().
Creating the Scene (init();)
Everything is initialised in this function.
As before, add a scene, camera and renderer and add the renderer to the
document (don’t forget to declare the scene, camera and renderer as global
variables). You won’t need a vertex shader or fragment shader this time.
Put the far plane of the camera at 10000. Locate the camera at (0, 30, 500) and add it to the
scene.
You’ll need to create nine variables for the sun’s, earth’s and moon’s geometries, materials
and meshes. These are global variables.
You can create the sun object using the following code:
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.
You could also use a suitable IDE.
sunGeometry = new THREE.SphereGeometry(109, 400, 200);
sunMaterial = new THREE.MeshStandardMaterial(
 {
 emissive: 0xffd700,
// emissiveMap: texture,
 emissiveIntensity: 1,
 wireframe: false
 }
);
sunMesh = new THREE.Mesh(sunGeometry, sunMaterial);
scene.add(sunMesh);
This creates a spherical object (what do the arguments mean?) of a particular colour. Where
is it located? The emissiveMap is something you may use later.
The sun must be a source of light. The PointLight() constructor can achieve this.
Create a point light source of white light at the origin and add it to the scene. You might also
add a diffuse light to give some background illumination, use AmbientLight().
Obviously this is physically unrealistic but it makes the objects more visible.
You can create the earth and moon using similar code with the following differences:
• The earth sphere geometry arguments are 25, 50, 50
• The moon sphere geometry arguments are 5, 40, 20
• Both the earth and moon materials are MeshPhongMaterial, they don’t have an
emissive argument, but do have a color. You can experiment with color
values.
The texture argument might be used later. So the earthMaterial can be created
using something like:
earthMaterial = new THREE.MeshPhongMaterial(
 {
// map: texture,
 color: x0000ff
 }
The earth and moon will be grouped together into one object before being added to the
scene. To do this we need a global variable to store the earth-moon system, we need to
add the earth to it, by default it will go to the origin of this system. Then we need to add the
moon to the system and set its position relative to the earth.
Three.js provides a group object for storing collections:
earthSystem = new THREE.Group();
Then the earth (and moon) can be added to this in a manner that was similar to the way we
added the sun to the scene:
earthSystem.Add(earthMesh);
Don’t forget to set the position of the moon within the earth-moon system, using a function
something like:
moonMesh.position.set(orbitRadius, 0, 0);
A suitable value for orbitRadius is in the range 40 – 60.
The earth’s orbit could be approximated as a circle, and the location of the earth on it could
be computed as the following pseudocode:
earth.position.x = earthOrbitRadius * sin(2pwt);
earth.position.y = earthOrbitRadius * cos(2pwt);
w is the earth’s angular velocity and t is some measurement of time.
It is slightly more realistic to make the orbit an ellipse. To make this more efficient we precompute the co-ordinates of the earth’s orbit. Create a global variable with a suitable name.
The points can be computed by calling the function EllipseCurve. This has arguments
to define:
• The x co-ordinate of the centre point of the ellipse
• The y co-ordinate of the centre point of the ellipse
• The radius of the ellipse in the x direction
• The radius of the ellipse in the y direction
• The start angle for drawing the ellipse (in this case 0 radians)
• The end angle for drawing the ellipse (in this case 2p radians)
• Plus other arguments that can take default values.
You may choose to draw the orbit, in which case you will have to
• Transfer points from the orbit into a line buffer
• Create a geometry (using BufferGeometry) from these points
• Create a material (using LineBasicMaterial) and setting a suitable colour
• Create a line object using the geometry and material
• Rotate the line so it lies in the XZ plane instead of the default XY plane
• Add it to the scene
Animation (Animate();)
The basic animation function will contain the two lines to render the scene and request an
animation frame, as in the previous exercise. If you’ve followed the instructions so far and
now implement this, you’ll see a static scene with the sun, earth and moon in fixed positions
and the earth orbit (if you chose to draw it). The earth and moon should be solid coloured
spheres. The next step is to add movement to the objects. The following code should be
added to Animate() before the two lines you’ve just written.
The sun’s movement is simple. It doesn’t move. You might want to make it rotate if you add
a texture to it, which will be done later.
The earth-moon system’s position could be driven by using a counter that is incremented
for each frame of the animation. But we’ll use the time instead. A time can be obtained by
calling performance.now(). This gives the time in milliseconds since the browser
window was opened. This can be converted into a value in the range [0, 1) which will be
used as an index into the values of the EllipseCurve you defined earlier. In
pseudocode:
time = 0.00001 * performance.now();
t = (time mod 1)
We can get the earth-moon position by reading a point from the EllipseCurve object
(assume it’s called curve):
point = curve.getPoint(t)
Then the earthSystem’s x and z positions can be set to point.x and point.y
respectively. Changing the value of the multiplier (0.00001) will change the earth’s orbital
speed.
The moon’s position is set according to
moon.x = orbitRadius*cos(time*speed)
moon.z = orbitRadius*sin(time*speed)
Time was derived above. Speed is the orbital speed of the moon – you choose a sensible
value.
Optional Enhancements
Some optional enhancements follow.
Changing the viewpoint
It is possible to change the observer’s viewpoint by adding the following controls.
Insert the following line after the other import statement.
import { OrbitControls } from
"https://web.cs.manchester.ac.uk/three/three.jsmaster/examples/jsm/controls/OrbitControls.js";
Add a global variable with a suitable name, possibly controls.
Add the following two lines to the init() function:
controls = new OrbitControls(camera, renderer.domElement);
controls.autoRotate = true;
These add a controller to the scene and allow you to move the viewpoint by clicking and
dragging.
Texturing
The sun, earth and moon can be textured using textures from
https://www.solarsystemscope.com/textures/download/2k_sun.jpg
https://upload.wikimedia.org/wikipedia/commons/a/ac/Earthmap1000x500.jpg
https://svs.gsfc.nasa.gov/vis/a000000/a004700/a004720/lroc_color_poles_1k.jpg
To read these you’ll have to create one texture loader
const loader = new THREE.TextureLoader();
Textures can be loaded using this
var texture = loader.load(‘filename’); OR
var texture = loader.load(‘URL’);
And added to the material of the object you’re creating, by uncommenting the line in the
example above where you created the sun object.
The earth and moon textures can be added similarly, except you’ll add the line
map: texture,
to the material constructor. You’ll also need to delete the color property.
The problem you may encounter when attempting to run the code is that the resource fails
to load, and you have an error message such as
Access to image at <source> from origin 'null' has been blocked by CORS policy
This is a security feature of most modern browsers. You can set up a server on your host to
overcome this problem. Instructions are widely available on the web, specifically here
https://threejs.org/docs/index.html#manual/en/introduction/How-to-run-things-locally
If you’re using Chrome you can alternatively install an extension that allows CORS cross
origin loading (https://chrome.google.com/webstore/detail/allow-cors-accesscontrol/lhobafahddgcelffkeicbaginigeejlf?hl=en). Or in Safari you can explicitly turn off the
CORS checking.
Rotations
You can make the sun, Earth and Moon rotate on their axes, much like the cube rotated in
the previous exercise. Make sure you choose an appropriate length of the “day”.
Clouds
You could add clouds to the Earth. Find a cloud image (e.g.
https://i.stack.imgur.com/B3c7G.jpg) and add it as a transparent texture to a sphere mesh
that is slightly larger than the Earth. Make it rotate slightly slower than the Earth.
Background
You can also create a starry background for the scene. Make a very large sphere mesh – to
make sure it’s big enough to contain everything. Add a texture image of the Milky Way:
https://cdn.eso.org/images/screen/eso0932a.jpg
Make the sphere visible from inside as well as outside by setting the side member of the
material to THREE.DoubleSide.
Submission
Once you have a working solution, capture a short video of your solution, no more than 15
seconds long. It must demonstrate all the properties of your solar system, and not so
quickly that the marker can’t see them clearly (you’ll be penalised for videos that have so
much zooming or camera movement that it’s impossible to see the earth or moon rotating).
ZIP this and your html and submit the file to the Lab 2 area in Blackboard.
Submissions that are not in the ZIP format will not be marked.
Marking Scheme
We will endeavour to mark your work in face-to-face sessions in the scheduled labs.
You will receive marks for:
• The objects being in appropriate locations and moving appropriately.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:SCC312代做、代寫Java編程語言
  • 下一篇:代寫CSC8208、Java/c++編程語言代做
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    精品深夜AV无码一区二区_伊人久久无码中文字幕_午夜无码伦费影视在线观看_伊人久久无码精品中文字幕
    <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
    <ul id="e4iaa"></ul>
    <blockquote id="e4iaa"><tfoot id="e4iaa"></tfoot></blockquote>
    • <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
      <ul id="e4iaa"></ul>
      <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp><ul id="e4iaa"></ul>
      <ul id="e4iaa"></ul>
      <th id="e4iaa"><menu id="e4iaa"></menu></th>
      99精品久久99久久久久| 亚洲成人一二三| 欧美肥妇free| 91福利小视频| 欧美日韩一区高清| 欧美丰满美乳xxx高潮www| 欧美精品一二三四| 日韩一区二区三区电影在线观看| 欧美日韩免费高清一区色橹橹 | 久久久欧美精品sm网站| 精品久久一区二区三区| 精品国产a毛片| 国产日韩精品一区二区浪潮av| 久久色.com| 中国色在线观看另类| 中文字幕一区二区三中文字幕| 亚洲日本在线天堂| 亚洲精品亚洲人成人网| 亚洲综合久久久| 亚洲欧美成人一区二区三区| 国产日产亚洲精品系列| 67194成人在线观看| 91视频一区二区| 91极品视觉盛宴| 欧美日韩一区二区电影| 91精品国产高清一区二区三区 | 青青青伊人色综合久久| 日日欢夜夜爽一区| 久久99久久久欧美国产| 六月丁香综合在线视频| 国产一区啦啦啦在线观看| 丰满亚洲少妇av| 色婷婷一区二区| 欧美三级日本三级少妇99| 欧美色视频一区| 日韩欧美亚洲国产另类| 久久久www成人免费无遮挡大片| 欧美国产成人在线| 依依成人精品视频| 老司机精品视频在线| 国产成人免费9x9x人网站视频| 99视频在线精品| 欧美伦理影视网| 中文幕一区二区三区久久蜜桃| 一区二区三区在线免费播放| 毛片不卡一区二区| 不卡av在线免费观看| 91精品国产综合久久久蜜臀图片| 一本在线高清不卡dvd| 91精品国产综合久久国产大片| 国产色婷婷亚洲99精品小说| 亚洲在线视频免费观看| 国产精品综合在线视频| 在线免费不卡视频| 久久久久久麻豆| 日韩av电影免费观看高清完整版在线观看| 国产精品系列在线播放| 欧美综合亚洲图片综合区| 久久精品夜色噜噜亚洲aⅴ| 一区二区三区视频在线看| 精品在线播放免费| 在线精品视频免费播放| 久久精子c满五个校花| 图片区小说区国产精品视频| 成人不卡免费av| 精品国产一区二区三区忘忧草 | 99国产精品久久久久久久久久久| 在线观看欧美日本| 中文字幕二三区不卡| 国产精品一区在线观看你懂的| 日本精品一区二区三区四区的功能| 欧美日韩亚州综合| 亚洲欧美在线观看| 国产电影一区二区三区| 欧美不卡视频一区| 日本欧美一区二区三区乱码| 欧美亚洲另类激情小说| 中文字幕一区视频| 不卡高清视频专区| 久久久久久免费网| 精品一区二区成人精品| 欧美精品1区2区| 亚洲高清免费在线| 91成人国产精品| 亚洲欧美另类小说| 一本在线高清不卡dvd| 亚洲欧美一区二区在线观看| 成人动漫一区二区在线| 国产肉丝袜一区二区| 国产乱子伦一区二区三区国色天香| 91精品国产91久久久久久最新毛片| 亚洲国产综合视频在线观看| 91网上在线视频| 亚洲最大的成人av| 欧美日韩免费电影| 免费观看在线色综合| 欧美一区二区三区四区在线观看| 日本视频免费一区| 精品日韩一区二区三区免费视频| 激情六月婷婷综合| 国产丝袜在线精品| 91蜜桃视频在线| 亚洲18影院在线观看| 欧美理论电影在线| 韩国v欧美v日本v亚洲v| 久久久一区二区| 在线观看一区日韩| 麻豆久久久久久| 亚洲欧美日韩在线| 91麻豆精品国产91久久久使用方法| 国内国产精品久久| 亚洲手机成人高清视频| 欧美不卡一区二区三区四区| 成人综合在线网站| 日韩国产欧美在线播放| 久久久久国产精品人| 91在线看国产| 激情五月婷婷综合网| 国产精品久久毛片a| 欧美一区二区三区视频免费| 国产成人综合在线| 免费xxxx性欧美18vr| 国产精品久久看| 久久人人爽爽爽人久久久| 色婷婷精品久久二区二区蜜臀av| 热久久久久久久| 亚洲精品一二三| 欧美国产一区二区| 7777精品久久久大香线蕉 | 久久久一区二区三区| 色婷婷综合视频在线观看| 蜜臂av日日欢夜夜爽一区| 一区二区三区国产精品| 久久久久久久综合色一本| 欧美一区午夜视频在线观看| 91欧美激情一区二区三区成人| 国产一本一道久久香蕉| 亚洲国产成人av| 国产精品美女久久福利网站| 91精品国产91久久综合桃花| 91麻豆蜜桃一区二区三区| 国产精品综合一区二区三区| 日韩电影在线观看一区| 亚洲日本丝袜连裤袜办公室| 国产精品久久毛片| 日韩精品中文字幕一区二区三区 | 视频一区免费在线观看| 国产精品高潮呻吟| 精品国产乱码久久久久久老虎| 欧美性一级生活| 91老师片黄在线观看| 成人国产精品视频| 丁香亚洲综合激情啪啪综合| 精品写真视频在线观看| 久久国内精品视频| 青娱乐精品在线视频| 丝袜美腿亚洲综合| 首页综合国产亚洲丝袜| 亚洲一区二区三区国产| 一区二区三区日韩欧美精品| 亚洲欧洲日产国码二区| 国产精品伦理在线| 中文字幕免费在线观看视频一区| 日韩久久久久久| 精品国产青草久久久久福利| 日韩欧美资源站| 日韩精品最新网址| 精品国产乱码久久久久久影片| 国产午夜精品久久| 国产精品私人影院| 亚洲男人的天堂在线观看| 亚洲激情欧美激情| 中文字幕亚洲欧美在线不卡| 国产日韩欧美高清在线| 国产精品久久久久久久久免费相片| 中文字幕不卡三区| 亚洲人妖av一区二区| 一区二区三区不卡视频| 午夜精品影院在线观看| 日本不卡视频一二三区| 国产在线国偷精品免费看| 国产成人av电影在线播放| 99精品一区二区三区| 欧美日韩免费观看一区三区| 538在线一区二区精品国产| 日韩免费看的电影| 国产精品乱人伦一区二区| 亚洲综合免费观看高清在线观看| 午夜视频一区二区| 国产精品中文有码| 91麻豆高清视频| 91麻豆精品国产自产在线| 久久久另类综合| 国产日韩欧美亚洲| 亚洲成人免费在线| 国产精品一区二区久久不卡| 日本韩国视频一区二区| 欧美大片国产精品| **欧美大码日韩| 久久精品久久久精品美女|