-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparticles.html
89 lines (57 loc) · 3.13 KB
/
particles.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
<!DOCTYPE html>
<!-- CSS Template from http://www.csstemplatesfree.org/jengo.html -->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Particles</title>
<link rel="stylesheet" href="assets/styles/style.css" />
<!--[if IE 6]>
<link rel="stylesheet" href="assets/styles/ie6.css" />
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" href="assets/styles/ie7.css" />
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" href="assets/styles/ie8.css" />
<![endif]-->
</head>
<body>
<div id="wrap">
<div id="header">
<h1><a href=".." title="Home">Greg Schafer</a></h1>
<h2>Student</h2>
</div><!--end header-->
<div id="embed">
<h3>Particles</h3>
<iframe width="668" height="720" scrolling="no" frameborder="0" src="http://www.openprocessing.org/visuals/iframe.php?visualID=46413&width=640&height=640&border=true"></iframe>
</div><!--end intro-->
<div id="main">
<div id="content">
<p class="service-title first"><em>How to play</em></p>
<p>Play in the applet above, or <a href="assets/projects/particles/particles.zip">download the source</a> and open it in the Processing IDE<ul>
<li>Push R to reset</li>
<li>Push C to continue after a green-pink collision</li>
<li>` (backtick/tilde) for debug info</li>
</ul></p>
<p class="service-title"><em>What</em></p>
<p>After using fisica for SpinMaze, I wanted to physics sandbox-y sort of particle/molecule games. Particles of different colors can interact in different ways.</p>
<p class="service-title"><em>Tech</em></p>
<p><a href="http://processing.org/">Processing</a> with <a href="http://www.ricardmarxer.com/fisica/">fisica library</a> for physics</p>
<p class="service-title"><em>When</em></p>
<p>Spring 2011</p>
</div><!--end content-->
<div id="sidebar">
<h5><em>Screenshots</em></h5>
<a href="assets/images/screens/particles/1.png" title="Molecule formed" class="first"><img src="assets/images/screens/particles/1_thumb.png" class="project-img" alt="Molecule formed" /></a>
<a href="assets/images/screens/particles/2.png" title="Initial state"><img src="assets/images/screens/particles/2_thumb.png" class="project-img" alt="Initial state" /></a>
<a href="assets/images/screens/particles/3.png" title="With debug mode on"><img src="assets/images/screens/particles/3_thumb.png" class="project-img" alt="With debug mode on" /></a>
</div><!--end sidebar-->
</div><!--end main-->
<div id="footer">
<p><span class="twitter"><a href="https://github.com/grschafer">GitHub</a> / <a href="http://www.linkedin.com/in/grschafer">LinkedIn</a> / <a href="https://twitter.com/#!/grschafer">Twitter</a></span></p>
</div><!--end footer-->
</div><!--end wrap-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js"></script>
<script src="assets/js/jquery.custom.js"></script>
</body>
</html>