-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathindex.html
More file actions
151 lines (144 loc) · 4.89 KB
/
index.html
File metadata and controls
151 lines (144 loc) · 4.89 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="SKÅPA" />
<meta property="og:type" content="website" />
<meta
name="description"
content="3D printable model generator for IKEA SKÅDIS"
/>
<meta
property="og:description"
content="3D printable model generator for IKEA SKÅDIS"
/>
<meta property="og:url" content="https://skapa.build" />
<meta property="og:image" content="/public/skapa.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<title>IKEA SKÅDIS Models</title>
</head>
<body>
<header>
<h1>SKÅPA</h1>
</header>
<main>
<section id="generator">
<h2 class="hidden">Part Generator</h2>
<div id="part">
<div id="canvas-container">
<canvas aria-label="3D preview of the generated part">
3D Preview of the generated part. You might need to enable
JavaScript.</canvas
>
</div>
</div>
<div id="panel">
<div id="controls" role="group" aria-label="Box dimensions"></div>
<a id="download">Download 3MF</a>
</div>
</section>
<section id="about">
<h2 class="hidden">About</h2>
<section>
<h3>Usage</h3>
<p>
SKÅPA is a browser-based application that generates 3D-printable
parts. It focuses on accessories for the IKEA SKÅDIS pegboard
system. Specify width, depth & height then download the
generated model. Print without supports and using a
0.2 — 0.4mm layer height.
</p>
</section>
<section>
<h3>Implementation</h3>
<p>
SKÅPA is a client-side web application. Models are generated
in-browser using
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/elalish/manifold"
>manifold</a
>. Rendering is implemented with a custom
<a
target="_blank"
rel="noopener noreferrer"
href="https://threejs.org/"
>Three.js</a
>
effects pipeline. The interactivity is built using the experimental
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/nmattia/twrl"
>twrl</a
>
framework. The source code is available on GitHub:
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/nmattia/skapa"
>nmattia/skapa</a
>.
</p>
</section>
<section>
<h3>Author</h3>
<p>
SKÅPA was created by
<a
target="_blank"
rel="noopener noreferrer"
href="https://nmattia.com"
>Nicolas Mattia</a
>, a Swiss (not Swedish) software engineer. He works on Web
graphics, developer tooling and embedded gadgets. He writes about
technical projects on his blog, including
<a
target="_blank"
rel="noopener noreferrer"
href="https://nmattia.com/posts/2025-03-24-skapa-intro/"
>SKÅPA's initial development</a
>.
</p>
</section>
</section>
</main>
<footer>
<ul>
<li>
<!-- from https://buttons.github.io -->
<a
class="github-button"
href="https://github.com/nmattia/skapa"
data-color-scheme="no-preference: dark; light: dark; dark: dark;"
data-icon="octicon"
data-show-count="true"
aria-label="Star nmattia/skapa on GitHub"
>GitHub</a
>
</li>
<li>
<!-- from https://buttons.github.io -->
<a
class="github-button"
href="https://github.com/nmattia/skapa/issues"
data-color-scheme="no-preference: dark; light: dark; dark: dark;"
data-icon="octicon-issue-opened"
aria-label="Issue nmattia/skapa on GitHub"
>Report Issue</a
>
</li>
</ul>
</footer>
<script type="module" src="/src/main.ts"></script>
<!-- from https://buttons.github.io -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>