Spaces:
Build error
Build error
| import {sqrt} from "../math.js"; | |
| export default { | |
| draw(context, size) { | |
| const r = sqrt(size) * 0.4431; | |
| context.moveTo(r, r); | |
| context.lineTo(r, -r); | |
| context.lineTo(-r, -r); | |
| context.lineTo(-r, r); | |
| context.closePath(); | |
| } | |
| }; | |