-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (85 loc) · 2.44 KB
/
index.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
<html>
<head>
<meta charset="utf-8">
<title>Piratux projects</title>
<link
rel="stylesheet"
href="style.css"
/>
</head>
<body>
<h2>Hello, I am Piratux</h2>
<p>
I will use this website for hosting some of my projects.
<br />
Source code for all the projects can be found here:
<br />
<a
href="https://github.com/Piratux/Piratux.github.io"
target="_blank"
>https://github.com/Piratux/Piratux.github.io</a>
</p>
<h3>
A list of my bigger projects:
</h3>
<ul>
<li>
<a href="pick_and_drag">Pick and drag</a>: Project made for graphics course in university to visualise UV
mapping of 3D object. Made using Three.js.
</li>
<li>
<a href="chess_board">3D chess board</a>: Made using Three.js.
</li>
</ul>
<h3>
Other smaller projects:
</h3>
<ul>
<li>
<a href="connect_points">Connect points</a>
</li>
<li>
<a href="convex_torus">Convex torus</a>: Demo of Three.js Convex Geometry and manual UV mapping.
</li>
<li>
<a href="wheels">Rotating wheels</a>
</li>
</ul>
<h3>
Fractal related projects:
</h3>
<ul>
<li>
<a href="hausdorff_distance_visualiser">Hausdorff distance visualiser</a>
</li>
<li>
<a href="grid_fractals">Grid fractals</a>
</li>
<li>
<a href="tree_fractals">Tree fractals</a>
</li>
<li>
<a
href="https://www.desmos.com/calculator/gczgfrsgov"
target="_blank"
>Transformation demo in desmos</a>
</li>
<li>
<a href="L_system_fractals">L system fractals</a>
</li>
<li>
<a href="mandelbrot">Mandelbrot, Julia and Newton sets</a>
</li>
<li>
<a href="steganography">Steganography tool</a>: Seamlessly hide text in images.
</li>
<li>
<a href="fractal_dimension">Fractal dimension calculator</a>: Calculates image fractal dimension that can be
used to compare similar images.
</li>
<li>
<a href="dynamic_system">Dynamic system analysis</a>
</li>
</ul>
</body>
</html>