Skip to content

Instantly share code, notes, and snippets.

View topologicallytony's full-sized avatar

Tony Boone topologicallytony

  • Seattle
View GitHub Profile
@topologicallytony
topologicallytony / index.html
Last active December 16, 2016 21:49
Bifurcation Diagram of the Logistic Map
<!DOCTYPE html>
<meta charset="utf-8">
<style>
/*************************************************/
/********************Axis*************************/
/*************************************************/
.axis path,
.axis line {
fill: none;
@topologicallytony
topologicallytony / index.html
Last active January 6, 2017 03:31
Achimedes Approximation to Pi
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Archimedes Pi</title>
@topologicallytony
topologicallytony / index.html
Last active January 6, 2017 03:30
Cantor Set
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Cantor Set</title>
<!-- D3.js -->
<script src="https://d3js.org/d3.v4.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<style type="text/css">
@topologicallytony
topologicallytony / index.html
Last active January 6, 2017 03:29
Koch Snowflake
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Koch Snowflake</title>
<!-- D3.js -->
<script src="https://d3js.org/d3.v4.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<style type="text/css">
@topologicallytony
topologicallytony / index.html
Last active January 6, 2017 03:28
Inverted Koch Snowflake
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Inverted Koch Snowflake</title>
<!-- D3.js -->
<script src="https://d3js.org/d3.v4.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<style type="text/css">
@topologicallytony
topologicallytony / index.html
Last active January 6, 2017 03:27
Sierpinski Triangle
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sierpinski Triangle</title>
@topologicallytony
topologicallytony / index.html
Last active February 28, 2021 05:03
Mobius Strip
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mobius Strip</title>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Torus</title>
@topologicallytony
topologicallytony / index.html
Last active January 8, 2017 01:34
Animated Logistic Map Bifurcation Diagram
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Animated Logistic Map Bifurcation Diagram</title>
@topologicallytony
topologicallytony / Readme.md
Last active January 20, 2017 06:33
Lindenmayer System Generator

Lindenmayer Systems

In the above L-system generator, the following commands can be used to create a turtle graphic

Generating a Turtle Graphic

  • Drawing Commands: Letters in the alphabet (A-G) that tell the turtle to move forward in the direction currently pointed
  • Constant Commands: Letters in the alphabet (X,Y,Z) that do not correspond to any change in the turtle's position
  • + : Turn the turtle to the left by the angle specified
  • - : Turn the turtle to the right by the angle specified