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
// Author: Huahua (https://www.youtube.com/user/xxfflower) | |
// p5 web editor: https://editor.p5js.org | |
var w = 400; | |
var h = 400; | |
var img; | |
var sampled = 0; | |
var valid = 0; | |
function setup() { | |
createCanvas(w, h); |
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
// Author: Huahua (https://www.youtube.com/user/xxfflower) | |
// p5 web editor: https://editor.p5js.org | |
var N = 50; | |
var K = 100; | |
var w = 10; | |
var h = 4; | |
var s; | |
var running = true; | |
function SelectSort() { |
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
// Author: Huahua (https://www.youtube.com/user/xxfflower) | |
// p5 web editor: https://editor.p5js.org | |
var rows = 25; | |
var cols = 25; | |
var a = 20; | |
var s; | |
var f; | |
function Snake() { | |
this.x = 12; |