This repository was archived by the owner on Nov 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathblank.html
61 lines (55 loc) · 2.18 KB
/
blank.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
margin: 30px 20px;
color: #555;
font-family: sans-serif;
font-size: 15px;
line-height: 20px;
tab-size: 4;
overflow: auto;
}
h1 {
color: #333;
font-size: 25px;
font-weight: normal;
margin-top: 10px;
}
</style>
</head>
<body>
<h1>Welcome to Verge3D Code Examples</h1>
<p>
On this page you can find 300+ ready-to-use WebGL examples ported to the Verge3D framework from Three.js.
Among them:
<ul>
<li>Procedural and keyframe-based animation.</li>
<li>Impressive shading techniques.</li>
<li>CPU and GPU-based physics simulation.</li>
<li>Procedural geometry.</li>
<li>Advanced materials.</li>
<li>Complex postprocessing effects.</li>
<li>OBJ, COLLADA, FBX, 3MF, AMF, STL and PLY loaders</li>
<li>Canvas2D and CSS3 examples.</li>
</ul>
</p>
<img src="files/industrial-robot-gallery.jpg" style="width:100%" >
<p>
These applications are based on <a href="https://threejs.org/examples/" target="_blank">three.js code examples</a> and distributed under the MIT license. All copyrights belong to the respective owners.
</p>
<p>
Please also note that some assets (models, textures) from these examples are distributed on the non-commercial basis. Contact the corresponging authors to receive commercial usage rights.
</p>
<h2>How to integrate these examples in your own Verge3D project</h2>
<p>
These examples are mostly intended for programmers and require basic knowledge of JavaScript and undestanding Verge3D application structure and API. Please refer to the <a href="https://www.soft8soft.com/docs/manual/en/introduction/Using-JavaScript.html" target="_blank">Verge3D User Manual</a> for more info.
</p>
<p>
Use <strong>View Source</strong> button to display an example's sources then locate and copy the code you need.
</p>
</body>
</html>