-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
474 lines (410 loc) · 14.2 KB
/
index.html
File metadata and controls
474 lines (410 loc) · 14.2 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PyRoomStudio - Open-Source Room Acoustics Design</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #333;
background: #f8f9fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header */
header {
background: white;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 20px 0;
position: sticky;
top: 0;
z-index: 100;
}
.header-content {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
height: 60px;
}
nav a {
color: #333;
text-decoration: none;
margin-left: 30px;
font-weight: 500;
transition: color 0.3s;
}
nav a:hover {
color: #76cbff;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #76cbff 0%, #ffb55c 100%) !important;
color: white;
padding: 100px 0;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
font-weight: 700;
}
.hero p {
font-size: 1.3rem;
margin-bottom: 30px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 15px 35px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
display: inline-block;
font-size: 1.1rem;
}
.btn-primary {
background: white;
color: #76cbff;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.btn-secondary {
background: rgba(255,255,255,0.2);
color: white;
border: 2px solid white;
}
.btn-secondary:hover {
background: white;
color: #76cbff;
}
/* Note Banner */
.note-banner {
background: #fff3cd;
border-left: 4px solid #ffc107;
padding: 20px;
margin: 40px 0;
border-radius: 5px;
}
.note-banner strong {
color: #856404;
}
/* Section Styles */
section {
padding: 80px 0;
}
section:nth-child(even):not(.hero) {
background: white;
}
h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: #2c3e50;
text-align: center;
}
h3 {
font-size: 1.8rem;
margin: 30px 0 15px 0;
color: #34495e;
}
.section-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 50px auto;
font-size: 1.1rem;
color: #666;
}
/* Mission Statement */
.mission-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
margin-top: 40px;
}
.mission-text ol {
font-size: 1.2rem;
line-height: 2;
padding-left: 20px;
}
.mission-text li {
margin-bottom: 15px;
}
.mission-image {
width: 100%;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
/* Setup Section */
.setup-steps {
max-width: 800px;
margin: 0 auto;
}
.setup-step {
background: white;
padding: 25px;
margin-bottom: 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.setup-step h3 {
margin-top: 0;
color: #76cbff;
}
.code-block {
background: #2c3e50;
color: #ecf0f1;
padding: 20px;
border-radius: 5px;
overflow-x: auto;
font-family: 'Courier New', monospace;
margin: 15px 0;
}
.code-block code {
display: block;
white-space: pre;
}
/* Controls Section */
.controls-list {
max-width: 800px;
margin: 0 auto;
font-size: 1.1rem;
}
.controls-list li {
background: white;
padding: 20px;
margin-bottom: 15px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
list-style: none;
}
.controls-list strong {
color: #ffb55c;
}
/* Screenshot Section */
.screenshot-container {
text-align: center;
margin-top: 40px;
}
.screenshot {
max-width: 100%;
border-radius: 10px;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
/* Contributing Section */
.contributing-content {
max-width: 900px;
margin: 0 auto;
margin-top: 40px;
}
.contributing-image {
width: 100%;
max-width: 700px;
display: block;
margin: 0 auto 40px auto;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.contributing-text {
font-size: 1.1rem;
}
.contributing-text h3 {
color: #76cbff;
margin-top: 30px;
}
/* Credits Section */
.credits-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
font-size: 1.1rem;
}
/* Footer */
footer {
background: #2c3e50;
color: white;
padding: 40px 0;
text-align: center;
}
.contacts {
margin: 20px 0;
}
.contacts p {
margin: 10px 0;
}
footer a {
color: #76cbff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.mission-content {
grid-template-columns: 1fr;
}
nav a {
display: block;
margin: 10px 0;
}
.header-content {
flex-direction: column;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<div class="header-content">
<img src="assets/Logo_v3_color.svg" alt="PyRoomStudio Logo" class="logo">
<nav>
<a href="#home">Home</a>
<a href="https://github.com/ematth/PyRoomStudio" target="_blank">GitHub</a>
<a href="https://discord.gg/Q9ZtTcZZvH" target="_blank">Discord</a>
</nav>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero" id="home">
<div class="container">
<h1>PyRoomStudio</h1>
<p>An open-source application for rendering and analyzing acoustical properties of 3D spaces via meshes</p>
<div class="cta-buttons">
<a href="https://github.com/ematth/PyRoomStudio" class="btn btn-primary" target="_blank">View on GitHub</a>
<a href="https://discord.gg/Q9ZtTcZZvH" class="btn btn-secondary" target="_blank">Join Discord</a>
</div>
</div>
</section>
<!-- About Section -->
<section>
<div class="container">
<p class="section-intro">
PyRoomStudio is a GUI application for rendering and analyzing acoustical properties of 3D spaces via STL meshes.
It is built on top of the <a href="https://github.com/LCAV/pyroomacoustics" target="_blank">PyRoomAcoustics</a>, a library for simulating acoustics algorithms.
</p>
</div>
</section>
<!-- Mission Section -->
<section id="mission">
<div class="container">
<h2>Mission Statement</h2>
<div class="mission-content">
<div class="mission-text">
<p style="font-size: 1.1rem; margin-bottom: 20px;">PyRoomStudio has two missions:</p>
<ol>
<li>Make room acoustics design accessible and intuitive for designers via open-source software.</li>
<li>Connect people passionate about designing for the auditory sense, from both the technical and the creative sides.</li>
</ol>
<p style="font-size: 1.1rem; margin-top: 30px;">By accomplishing these missions, we hope to increase the usage of acoustic tools in the design community and make light of sound as a necessary consideration for future spaces.</p>
</div>
<img src="assets/readme-image.png" alt="PyRoomStudio Mission" class="mission-image">
</div>
</div>
</section>
<!-- Setup Section -->
<section id="setup">
<div class="container">
<h2>Setup</h2>
<p class="section-intro">PyRoomStudio is currently running on Python 3.9+. Make sure to have one of these versions installed before downloading and running the application.</p>
<div class="setup-steps">
<div class="setup-step">
<h3>1. Clone the repository</h3>
<div class="code-block">
<code>$ git clone https://github.com/pyroomstudio/PyRoomStudio.git</code>
</div>
</div>
<div class="setup-step">
<h3>2. Setup your virtual environment (venv) and install necessary packages</h3>
<h4>Linux/macOS:</h4>
<div class="code-block">
<code>$ python3 -m venv venv
$ source venv/bin/activate
(venv) $ pip install -r requirements.txt</code>
</div>
<h4>Windows:</h4>
<div class="code-block">
<code>$ python3 -m venv venv
$ source venv/Scripts/Activate
(venv) $ pip install -r requirements.txt</code>
</div>
</div>
<div class="setup-step">
<h3>3. Open the software</h3>
<div class="code-block">
<code>$ python3 main_gui.py</code>
</div>
</div>
</div>
</div>
</section>
<!-- Screenshot Section -->
<section>
<div class="container">
<div class="screenshot-container">
<img src="assets/screenshot.png" alt="PyRoomStudio Screenshot" class="screenshot">
</div>
</div>
</section>
<!-- Contributing Section -->
<section id="contributing">
<div class="container">
<h2>Get Involved & Contributing</h2>
<div class="contributing-content">
<img src="assets/contributing-image.png" alt="Contributing to PyRoomStudio" class="contributing-image">
<div class="contributing-text">
<p>We are always accepting external contributions! We're looking for users who are interested in contributing code (GUI and app functionality) and/or material coefficients (for a public database).</p>
<h3>Issues</h3>
<p>The Issues tab on GitHub contains a running list of features to implement, as well as any bugs or problems that arise from development. For further details and discussions, please join our Discord server.</p>
<h3>Development Environment</h3>
<p>Environment libraries are provided in <code>requirements.txt</code> and consist of minimal tools needed to build the running simulation: PyGame, PyOpenGL, PyRoomAcoustics, and their required libraries.</p>
<h3>Materials Database</h3>
<p>We're also looking to expand our project into an open-source database of material coefficients. In the future, we want users to be able to drag-and-drop materials on different surfaces to improve the simulation process.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<h3><font color="white">Contacts</font></h3>
<div class="contacts">
<p><strong>William (Zhiwen) Chen</strong> - <a href="mailto:willc@illinois.edu">willc@illinois.edu</a><br><em>Co-Founder & Designer</em></p>
<p><strong>Evan M. Matthews</strong> - <a href="mailto:evanmm3@illinois.edu">evanmm3@illinois.edu</a> - <a href="https://ematth.dev" target="_blank">https://ematth.dev</a><br><em>Co-Founder & Programmer</em></p>
</div>
<p style="margin-top: 30px;">
<a href="https://github.com/ematth/PyRoomStudio" target="_blank">GitHub</a> |
<a href="https://discord.gg/Q9ZtTcZZvH" target="_blank">Discord</a>
</p>
<p style="margin-top: 20px; color: #95a5a6;">© 2025 PyRoomStudio. Open-source under the MIT License.</p>
</div>
</footer>
</body>
</html>