A Pen by opheliagame on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| float aafract(float x) { // --- antialiased fract | |
| // https://www.shadertoy.com/view/wtjGzt | |
| float v = fract(x), | |
| w = fwidth(x); // NB: x must not be discontinuous or factor discont out | |
| return v < 1.-w ? v/(1.-w) : (1.-v)/w; // replace right step by down slope (-> chainsaw is continuous). | |
| // shortened slope : added downslope near v=1 | |
| } | |
| float aafract2(float x) { // --- antialiased fract |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "sign": [ | |
| "%c - hand made by - \n%cββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ\n%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ\n%cβββββ%cβ%cβββββββ%cβ%cβββββββ%cβ%cβββββββ%cβ%cβββββββ%cβ%cβββββββ%cβ%cβββββββ%cβ%cβββββββ%cβ%cβββββββ%cβ%cβββββββ%cβ%cββ\n%cβ%cβββ%cβ%cβ%cβ%cβ%cβ%cβββ%cβ%cβ%cβ%cβ%cβ%cβββ%cβ%cβ%cβ%cβ%cβ%cβββ%cβ%cβ%cβ%cβ%cβ%cβββ%cβ%cβ%cββ%cβ%cβββ%cβ%cβ%cβ%cβ%cβ%cβββ%cβ%cβ%cβ%cβ%cβ%cβββ%cβ%cβ%cβ%cβ%cβ%cβββ%cβ%cβ%cβ%cβ%cβ%cβββ%cβ%cβ%cβ%cβ\n%cβββββββββ%cββ%cββββββ΄ββ%cβ%cβ%cβ%cβ%cββββ%cββ%cβββ%cβ%cβ%cβ%cββββ%cβ%cβ%cβββββ%cβ%cββββ%cββ%cββββ%cββ%cββββ%cβ%cβ%cβ%cββββ%cβ%cβββββββββ\n%cββ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβββ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ %cβ½%cβ%cβ%cβ%cββ%cβ%cβ%cβ%cβ%cβ%cββ%cβ%cβ%cβ%cβ%cβ%cββ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cβ%cββ%cβ%cβ%cβ%cβ%cβ%cβ²%cβ%cβ%cβ%cβ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Point { | |
| x: number | |
| y: number | |
| constructor(x, y) { | |
| this.x = x | |
| this.y = y | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // functions from easings.net written in javascript | |
| function easeInSine(x) { | |
| return 1 - Math.cos((x * Math.PI) / 2); | |
| } | |
| function easeOutSine(x) { | |
| return Math.sin((x * Math.PI) / 2); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class TextBox { | |
| /** | |
| * Creates a text box that renders text inside a box with proper sizing and alignment | |
| * @param {Object} options - Configuration options | |
| * @param {Number} options.x - X position of the box | |
| * @param {Number} options.y - Y position of the box | |
| * @param {Number} options.width - Width of the box | |
| * @param {Number} options.height - Height of the box | |
| * @param {Number} options.padding - Padding inside the box (default: 20) | |
| * @param {String} options.fontName - Font to use (default: "Arial") |
First Download the Android SDK Commandline Tool only.
https://developer.android.com/studio/
Goto Download Options
Find Commandline tools only Section