How to Get Perfect Circle in Neal.fun!

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

Bro, this video and style reminds me of 2015 android phone tutorials. Good times, and great video!

DJ
Автор

why i cant save it??? the outline of the jaavascript is red, and the "save" button is grey...

TimaYziscooking
Автор

in mobile, just use a real life circle ruler and trace your finger around it 🤯

xXMapleSyrupXx
Автор

My circle is 93.8% perfect, can you beat that?

Naiko_
Автор

i did all of that only for the circle to be too big

Quaplex
Автор

doesnt work. It draws a part of the circle

astraoutlight
Автор

Aww, well that's not exactly fun, I could just use fiddler, I like making little circles

Freakinkat
Автор

I don't have this thing(bookmark)

мамунт_в_споре
Автор

this is a scam, i did the exact bookmarklet but the save button became USELESS.

haizeiljoybrillantes
Автор

what the f a bookmarklet means???? you keep making the screen short.

ferbacountryballs
Автор

there was a error for me and also i cant make the bookmark anyways i went to console fixed it and know it works
here is the finished code
(function(){
let s = document.querySelector("main svg").getBoundingClientRect(),
cx = s.width / 2 + s.x,
cy = s.height / 2 + s.y,
r = s.width / 3,
d = document.querySelector("main div"),
a = 0;
for (let e = 0; e < 50; e++) {
a += Math.acos(1 - Math.pow(60 / r, 2) / 2);
let t = Math.round(cx + r * Math.cos(a)),
n = Math.round(cy + r * Math.sin(a));
if (e === 0) {
d.dispatchEvent(new MouseEvent("mousedown", { clientX: t, clientY: n }));
}
d.dispatchEvent(new MouseEvent("mousemove", { clientX: t, clientY: n }));
}
d.dispatchEvent(new MouseEvent("mouseup"));
})();

defaproprogrammer