X | Y | SIZE | COLOR | DEGREE | |
---|---|---|---|---|---|
1 | -2 | 0 | 100 | 125 | 0 |
2 | -1.992 | 0.1262378707 | 100 | 125 | 1 |
3 | -1.984 | 0.1781684596 | 100 | 125 | 2 |
4 | -1.976 | 0.2177705214 | 100 | 125 | 3 |
5 | -1.968 | 0.2509501943 | 100 | 125 | 4 |
6 | -1.952 | 0.3060980235 | 100 | 125 | 6 |
7 | -1.944 | 0.32994545 | 100 | 125 | 7 |
8 | -1.936 | 0.352 | 100 | 125 | 8 |
9 | -1.92 | 0.3919183588 | 100 | 125 | 10 |
10 | -1.912 | 0.4101901998 | 100 | 125 | 11 |
11 | -1.904 | 0.4275324549 | 100 | 125 | 12 |
12 | -1.896 | 0.4440540508 | 100 | 125 | 13 |
13 | -1.888 | 0.4598434516 | 100 | 125 | 14 |
14 | -1.832 | 0.5547756303 | 100 | 125 | 21 |
15 | -1.752 | 0.6591631058 | 100 | 125 | 31 |
16 | -1.744 | 0.6681796166 | 100 | 125 | 32 |
17 | -1.608 | 0.7939370252 | 100 | 125 | 49 |
18 | -1.472 | 0.8815985481 | 100 | 125 | 66 |
19 | -1.424 | 0.9056621887 | 100 | 125 | 72 |
20 | -1.408 | 0.9129819275 | 100 | 125 | 74 |
Ant-DAO-MentHeart Chart 3
Updated 2025-03-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with
degrees as (
SELECT
1 * SEQ4() as degree
FROM
TABLE (GENERATOR(ROWCOUNT => (500)))
),
y1 as (
select
-2 + (4 * degree / 500) as x,
sqrt(1 - pow((abs(x) - 1), 2)) as y,
100 as size,
500*0.25 as color,
degree
from
degrees
),
y2 as (
select
-2 + (4 * degree / 500) as x,
acos(1 - abs(x)) - pi() as y,
100 as size,
500*0.25 as color,
degree
from
degrees
),
y3 as (
select
-5 + (10 * degree / 500) as x,
sqrt(pow(5, 2) - pow(x, 2)) - pi() as y,
1 as size,
degree as color,
degree
from
degrees
Last run: 25 days ago
...
1499
46KB
1s