Descargar imagen Raspbian Lite.
Flashear imagen a la SD con Balena Etcher (Windows).
Añadir carpeta /ssh a la raíz de la sd.
| function setup() { | |
| createCanvas(800, 800); | |
| angleMode(DEGREES); | |
| } | |
| function draw() { | |
| background((95 / 100) * 255); | |
| push(); | |
| translate(width / 2, height / 2); | |
| let ratio = 0.01; |
| int[][] result; | |
| float t, c; | |
| float ease(float p) { | |
| return 3*p*p - 2*p*p*p; | |
| } | |
| float ease(float p, float g) { | |
| if (p < 0.5) | |
| return 0.5 * pow(2*p, g); |
| :root { | |
| --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53); | |
| --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19); | |
| --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22); | |
| --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06); | |
| --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035); | |
| --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335); | |
| --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); | |
| --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1); | |
| --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1); |
| int[][] result; | |
| float t, c; | |
| float ease(float p) { | |
| return 3*p*p - 2*p*p*p; | |
| } | |
| float ease(float p, float g) { | |
| if (p < 0.5) | |
| return 0.5 * pow(2*p, g); |
Descargar imagen Raspbian Lite.
Flashear imagen a la SD con Balena Etcher (Windows).
Añadir carpeta /ssh a la raíz de la sd.
| int[][] result; | |
| float t, c; | |
| float ease(float p) { | |
| return 3*p*p - 2*p*p*p; | |
| } | |
| float ease(float p, float g) { | |
| if (p < 0.5) | |
| return 0.5 * pow(2*p, g); |
| <?php | |
| /** | |
| * @param $tag | |
| * | |
| * @return string | |
| */ | |
| function close_tag($tag) | |
| { | |
| return "</" . $tag . ">"; |
These libraries can be used to quickly create a GUI for configureable parameters using sliders, checkboxes, colors pickers etc
| int[][] result; | |
| float t, c; | |
| float ease(float p) { | |
| return 3*p*p - 2*p*p*p; | |
| } | |
| float ease(float p, float g) { | |
| if (p < 0.5) | |
| return 0.5 * pow(2*p, g); |
| /* | |
| <html xml:lang="es" lang="es" class="not-ie no-js"> | |
| Replaces the `no-js` by `js` if browser has JS support and the `not-ie` by `ie` if we are in IE browser | |
| Conditional comments are no longer supported in IE10 / 11 https://msdn.microsoft.com/en-us/library/hh801214(v=vs.85).aspx | |
| Is recommended to be the FIRST js script app ;) | |
| */ | |
| (function(){ | |
| var | |
| ua = window.navigator.userAgent; |