Amogh-kal1's picture
Upload folder using huggingface_hub
db75f77 verified
import {sqrt} from "../math.js";
export default {
draw(context, size) {
const w = sqrt(size);
const x = -w / 2;
context.rect(x, x, w, w);
}
};