-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.idyll | ||
src/docs | ||
src/src/tmp | ||
dev | ||
node_modules | ||
src/src/unused |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# rreusser.github.io | ||
|
||
© 2018 Ricky Reusser. MIT License. |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
|
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html><html lang="en" dir="ltr"><head><title>Centripetal B-Splines</title><meta charset="utf-8"><meta name="application-name" content="Centripetal B-Splines"> | ||
<meta name="subject" content="Experimenting with centripetal parameterization for B-splines"> | ||
<meta name="abstract" content="Experimenting with centripetal parameterization for B-splines"> | ||
<meta name="twitter:title" content="Centripetal B-Splines"> | ||
<meta name="description" content="Experimenting with centripetal parameterization for B-splines"> | ||
<meta name="twitter:description" content="Experimenting with centripetal parameterization for B-splines"> | ||
<meta name="author" content="Ricky Reusser"> | ||
<meta name="twitter:creator" content="Ricky Reusser"> | ||
<meta name="twitter:card" content="summary"> | ||
<meta property="og:title" content="Centripetal B-Splines"> | ||
<meta property="og:description" content="Experimenting with centripetal parameterization for B-splines"> | ||
<meta property="article:author" content="Ricky Reusser"> | ||
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" /></head><body><script src="bundle.js"></script><script src="../nav.bundle.js"></script></body></html> |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
html, body { | ||
background-color: #000; | ||
text-align: center; | ||
} | ||
canvas { | ||
margin-left: auto; | ||
margin-right: auto; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html><html lang="en" dir="ltr"><head><title>Continuum Gravity</title><meta charset="utf-8"><link rel="stylesheet" href="index.css"><meta name="application-name" content="Continuum Gravity"> | ||
<meta name="subject" content="One million particles interacting gravitationally via a Poisson equation solved on a 2D grid"> | ||
<meta name="abstract" content="One million particles interacting gravitationally via a Poisson equation solved on a 2D grid"> | ||
<meta name="twitter:title" content="Continuum Gravity"> | ||
<meta name="description" content="One million particles interacting gravitationally via a Poisson equation solved on a 2D grid"> | ||
<meta name="twitter:description" content="One million particles interacting gravitationally via a Poisson equation solved on a 2D grid"> | ||
<meta name="author" content="Ricky Reusser"> | ||
<meta name="twitter:creator" content="Ricky Reusser"> | ||
<meta name="twitter:card" content="summary"> | ||
<meta property="og:title" content="Continuum Gravity"> | ||
<meta property="og:description" content="One million particles interacting gravitationally via a Poisson equation solved on a 2D grid"> | ||
<meta property="article:author" content="Ricky Reusser"> | ||
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" /></head><body><script src="bundle.js"></script><script src="../nav.bundle.js"></script></body></html> |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html><html lang="en" dir="ltr"><head><title>Domain Coloring with Contour Scaling</title><meta charset="utf-8"><meta name="application-name" content="Domain Coloring with Contour Scaling"> | ||
<meta name="subject" content="Using OES_standard_derivatives to scale contours to the local gradient of a function"> | ||
<meta name="abstract" content="Using OES_standard_derivatives to scale contours to the local gradient of a function"> | ||
<meta name="twitter:title" content="Domain Coloring with Contour Scaling"> | ||
<meta name="description" content="Using OES_standard_derivatives to scale contours to the local gradient of a function"> | ||
<meta name="twitter:description" content="Using OES_standard_derivatives to scale contours to the local gradient of a function"> | ||
<meta name="author" content="Ricky Reusser"> | ||
<meta name="twitter:creator" content="Ricky Reusser"> | ||
<meta name="twitter:card" content="summary"> | ||
<meta property="og:title" content="Domain Coloring with Contour Scaling"> | ||
<meta property="og:description" content="Using OES_standard_derivatives to scale contours to the local gradient of a function"> | ||
<meta property="article:author" content="Ricky Reusser"> | ||
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" /></head><body><script src="bundle.js"></script><script src="../nav.bundle.js"></script></body></html> |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
html, body { | ||
margin: 0; | ||
padding: 0; | ||
background-color: #111; | ||
} | ||
|
||
.gh-corner { | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
display: block; | ||
} | ||
|
||
.control-panel { | ||
position: relative !important; | ||
top: 0 !important; | ||
left: 0 !important; | ||
display: inline-block !important; | ||
} | ||
|
||
.control-panel-root { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
display: inline-block; | ||
z-index: 100; | ||
transition: transform 0.2s ease-in-out; | ||
transform: translate3d(-260px,0,0); | ||
} | ||
|
||
.control-panel-root.is-hover { | ||
transform: translate3d(0,0,0); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html><html lang="en" dir="ltr"><head><title>Double Pendulum</title><meta charset="utf-8"><link rel="stylesheet" href="index.css"><meta name="application-name" content="Double Pendulum"> | ||
<meta name="subject" content="Accumulating long-term patterns in a chaotic double-pendulum"> | ||
<meta name="abstract" content="Accumulating long-term patterns in a chaotic double-pendulum"> | ||
<meta name="twitter:title" content="Double Pendulum"> | ||
<meta name="description" content="Accumulating long-term patterns in a chaotic double-pendulum"> | ||
<meta name="twitter:description" content="Accumulating long-term patterns in a chaotic double-pendulum"> | ||
<meta name="author" content="Ricky Reusser"> | ||
<meta name="twitter:creator" content="Ricky Reusser"> | ||
<meta name="twitter:card" content="summary"> | ||
<meta property="og:title" content="Double Pendulum"> | ||
<meta property="og:description" content="Accumulating long-term patterns in a chaotic double-pendulum"> | ||
<meta property="article:author" content="Ricky Reusser"> | ||
</head><body><script src="bundle.js"></script><script src="../nav.bundle.js"></script></body></html> |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html><html lang="en" dir="ltr"><head><title>Erosion</title><meta charset="utf-8"><meta name="application-name" content="Erosion"> | ||
<meta name="subject" content="An ad-hoc particle-based terrain erosion algorithm, computed on the GPU"> | ||
<meta name="abstract" content="An ad-hoc particle-based terrain erosion algorithm, computed on the GPU"> | ||
<meta name="twitter:title" content="Erosion"> | ||
<meta name="description" content="An ad-hoc particle-based terrain erosion algorithm, computed on the GPU"> | ||
<meta name="twitter:description" content="An ad-hoc particle-based terrain erosion algorithm, computed on the GPU"> | ||
<meta name="author" content="Ricky Reusser"> | ||
<meta name="twitter:creator" content="Ricky Reusser"> | ||
<meta name="twitter:card" content="summary"> | ||
<meta property="og:title" content="Erosion"> | ||
<meta property="og:description" content="An ad-hoc particle-based terrain erosion algorithm, computed on the GPU"> | ||
<meta property="article:author" content="Ricky Reusser"> | ||
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" /></head><body><script src="bundle.js"></script><script src="../nav.bundle.js"></script></body></html> |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html><html lang="en" dir="ltr"><head><title>Fibonacci Sphere</title><meta charset="utf-8"><meta name="twitter:image" content="https://cdn.rawgit.com/rreusser/rreusser.github.io/08e316fc/src/src/fibonacci-sphere/thumbnail.jpg"> | ||
<meta name="twitter:card" content="summary_large_image"> | ||
<meta name="application-name" content="Fibonacci Sphere"> | ||
<meta name="subject" content="From Martin Roberts' article about evenly distributed points on a sphere"> | ||
<meta name="abstract" content="From Martin Roberts' article about evenly distributed points on a sphere"> | ||
<meta name="twitter:title" content="Fibonacci Sphere"> | ||
<meta name="description" content="From Martin Roberts' article about evenly distributed points on a sphere"> | ||
<meta name="twitter:description" content="From Martin Roberts' article about evenly distributed points on a sphere"> | ||
<meta name="author" content="Ricky Reusser"> | ||
<meta name="twitter:creator" content="Ricky Reusser"> | ||
<meta property="og:image" content="https://cdn.rawgit.com/rreusser/rreusser.github.io/08e316fc/src/src/fibonacci-sphere/thumbnail.jpg"> | ||
<meta property="og:title" content="Fibonacci Sphere"> | ||
<meta property="og:description" content="From Martin Roberts' article about evenly distributed points on a sphere"> | ||
<meta property="article:author" content="Ricky Reusser"> | ||
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" /></head><body><script src="bundle.js"></script><script src="../nav.bundle.js"></script></body></html> |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
body { | ||
background-color: rgb(25, 25, 25); | ||
} | ||
|
||
canvas { | ||
position: fixed !important; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html><html lang="en" dir="ltr"><head><title>Flamm's Paraboloid</title><meta charset="utf-8"><link rel="stylesheet" href="index.css"><meta name="application-name" content="Flamm's Paraboloid"> | ||
<meta name="subject" content="Scroll to build Flamm's Paraboloid"> | ||
<meta name="abstract" content="Scroll to build Flamm's Paraboloid"> | ||
<meta name="twitter:title" content="Flamm's Paraboloid"> | ||
<meta name="description" content="Scroll to build Flamm's Paraboloid"> | ||
<meta name="twitter:description" content="Scroll to build Flamm's Paraboloid"> | ||
<meta name="author" content="Ricky Reusser"> | ||
<meta name="twitter:creator" content="Ricky Reusser"> | ||
<meta name="twitter:card" content="summary"> | ||
<meta property="og:title" content="Flamm's Paraboloid"> | ||
<meta property="og:description" content="Scroll to build Flamm's Paraboloid"> | ||
<meta property="article:author" content="Ricky Reusser"> | ||
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" /></head><body><script src="bundle.js"></script><script src="../nav.bundle.js"></script></body></html> |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html><html lang="en" dir="ltr"><head><title>Fluid Simluation</title><meta charset="utf-8"><meta name="application-name" content="Fluid Simluation"> | ||
<meta name="subject" content="Classic semi-Lagrangian fluid simulation from Visual Simulation of Smoke"> | ||
<meta name="abstract" content="Classic semi-Lagrangian fluid simulation from Visual Simulation of Smoke"> | ||
<meta name="twitter:title" content="Fluid Simluation"> | ||
<meta name="description" content="Classic semi-Lagrangian fluid simulation from Visual Simulation of Smoke"> | ||
<meta name="twitter:description" content="Classic semi-Lagrangian fluid simulation from Visual Simulation of Smoke"> | ||
<meta name="author" content="Ricky Reusser"> | ||
<meta name="twitter:creator" content="Ricky Reusser"> | ||
<meta name="twitter:card" content="summary"> | ||
<meta property="og:title" content="Fluid Simluation"> | ||
<meta property="og:description" content="Classic semi-Lagrangian fluid simulation from Visual Simulation of Smoke"> | ||
<meta property="article:author" content="Ricky Reusser"> | ||
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" /></head><body><script src="bundle.js"></script><script src="../nav.bundle.js"></script></body></html> |