Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
DuyTa
/
Graduation
like
1
License:
mit
Model card
Files
Files and versions
Community
3
refs/pr/2
Graduation
/
ui
/
node_modules
/
d3-shape
/
src
/
symbol
/
square.js
DuyTa
Upload folder using huggingface_hub
bc20498
verified
10 months ago
raw
Copy download link
history
blame
160 Bytes
import
{sqrt}
from
"../math.js"
;
export
default
{
draw
(
context, size
) {
const
w =
sqrt
(size);
const
x = -w /
2
;
context.
rect
(x, x, w, w);
}
};