sandbox
めでたい.icon
加油.icon
p5-sketch-button.icon
code:sketch.js
class Windmill {
constructor() {
this.x = random(width);
this.y = random(height);
this.size = random(10, 50);
this.deg = 0;
this.vel = 50/this.size;
this.col = color(random(100, 255), random(100, 255), random(100, 255));
}
draw() {
this.deg += this.vel;
push();
fill(this.col);
translate(this.x, this.y);
rotate(this.deg);
square(0, 0, this.size);
pop();
}
}
let wms = [];
const N = 100;
function setup() {
createCanvas(600, 600);
angleMode(DEGREES);
rectMode(CENTER);
noStroke();
for (let i = 0; i < N; i += 1) {
wms.push(new Windmill());
}
}
code: mermaid
graph LR
HELLO --> WORLD
code: pie.mermaid
pie title あなたは貧乳派ですか巨乳派ですか
"貧乳が好き" : 5
"巨乳が好き" : 10
"おっぱいならなんでも好き" : 85
code: pie2.mermaid
pie title 本日
"経過" : 302
"残り" : 63
https://svg-hosting.vercel.app/api/svg?url=https://scrapbox.io/api/code/suto3/hr/hr.svg
https://plantuml-proxy.vercel.app/svg/https://scrapbox.io/api/code/suto3scratchpad/sandbox/test.pu#.svg
code:test.pu
@startuml
colors
@enduml
suto3.icon