-
Notifications
You must be signed in to change notification settings - Fork 0
/
3Dbezier.html
95 lines (93 loc) · 3.1 KB
/
3Dbezier.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title id="title">Yifei Chen</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/945200/OrbitControls.js"></script>
<script src="https://cdn.rawgit.com/mrdoob/three.js/a1fb0b5b/examples/js/controls/DragControls.js"></script>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
/>
</head>
<body>
<div class="wrapper">
<div class="section">
<div class="top_navbar">
<div class="hamburger">
<a href="#">
<i class="fas fa-bars"></i>
</a>
</div>
</div>
<div class="container" id="maincanvas"></div>
</div>
<div class="sidebar">
<div class="profile">
<h3>Yifei Chen</h3>
<p>University of Tokyo</p>
<p>CG homework M1</p>
<p>基本課題M1</p>
</div>
<ul>
<li>
<a href="index.html">
<span class="icon"><i class="fas fa-home"></i></span>
<span class="item">Introduction</span>
</a>
</li>
<li>
<a href="bezier.html">
<span class="icon"><i class="fas fa-bezier-curve"></i></span>
<span class="item">Bezier Curve</span>
</a>
</li>
<li>
<a href="adaptive.html">
<span class="icon"><i class="fas fa-vector-square"></i></span>
<span class="item">Adaptive Bezier</span>
</a>
</li>
<li>
<a href="3Dbezier.html" class="active">
<span class="icon"><i class="fas fa-cube"></i></span>
<span class="item">3D Bezier Curve</span>
</a>
</li>
<li>
<a href="catmull.html">
<span class="icon"><i class="fas fa-bezier-curve"></i></span>
<span class="item">Catmull-Rom</span>
</a>
</li>
<!-- <li>
<a href="#">
<span class="icon"><i class="fas fa-bezier-curve"></i></span>
<span class="item">B-Spline</span>
</a>
</li>
<li>
<a href="#">
<span class="icon"><i class="fas fa-bezier-curve"></i></span>
<span class="item">K-curves</span>
</a>
</li>
<li>
<a href="#">
<span class="icon"><i class="fas fa-bezier-curve"></i></span>
<span class="item">C<sup>2</sup> Splines</span>
</a>
</li> -->
</ul>
<div class="profile">
<h3></h3>
<p>
</p>
</div>
</div>
</div>
<script src="3Dbezier.js" defer></script>
</body>
</html>