winnie-fsHeart Chart d copy
Updated 2023-04-14
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
›
⌄
-- forked from shaunoff23-12135 / Heart Chart d @ https://flipsidecrypto.xyz/shaunoff23-12135/q/heart-chart-3-copy-KQvRON
-- forked from 16a70930-905f-4463-a2cd-aa8dd56b6e23
-- forked from abf76a5c-a5d9-40c5-a70b-263e499e9a93
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,
Run a query to Download Data