Skip to content

Instantly share code, notes, and snippets.

View Especuloide's full-sized avatar

Roberval T. Especuloide

View GitHub Profile
@Especuloide
Especuloide / Circular_Waves_Code.py
Created October 14, 2022 10:56
Semi-Circular Waves
import numpy as np
import matplotlib.animation as animation
from matplotlib import pyplot
hr = 1000
vr = 1000
fig, g = pyplot.subplots(figsize=(hr/100,vr/100))
pyplot.subplots_adjust(top = 0.979, left = 0.024, right = 0.972, bottom = 0.039)
@Especuloide
Especuloide / Skelektica.py
Created July 14, 2022 09:50
Skeleton Creature
import matplotlib
import numpy as np
import matplotlib.animation as animation
from matplotlib import pyplot
fig, g = pyplot.subplots(figsize=(11,11))
@Especuloide
Especuloide / Sine_Wave_Worm_Reddit.py
Last active April 15, 2022 15:54
Sine_Wave_Worm
import numpy as np
import matplotlib.animation as animation
from matplotlib import pyplot
# Plot size
hr = 1200
vr = 1200
@Especuloide
Especuloide / Multi_lines_Animation_Code.py
Last active August 6, 2021 19:09
Multi lines animation
import numpy as np
import matplotlib.animation as animation
from matplotlib import pyplot
from random import randint
fig, g = pyplot.subplots(figsize=(6,6))
pyplot.subplots_adjust(left = 0.0, right = 1.0, top = 1.0, bottom = 0.0)
@Especuloide
Especuloide / Lines_interference.py
Created July 18, 2020 08:19
Interference pattern animation
import numpy as np
import matplotlib.pyplot as pyplot
import matplotlib.animation as animation
pyplot.style.use("dark_background")
fig, g = pyplot.subplots(figsize=(6,6))
pyplot.subplots_adjust(top = 1.0, left = 0.00, right = 1.0, bottom = 0.00)