-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode-fantasy.txt
48 lines (35 loc) · 1.22 KB
/
code-fantasy.txt
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
37
38
39
40
41
42
43
44
45
46
47
48
load files="other-code.txt";
load_package files="/viewzavr-system-a/features/gui-lib/list.txt /viewzavr-system-a/features/list.txt";
load_package files="/features.js /csv/features.js";
dat:
load-csv extra-feature file="phase_yScaled2.csv" sigma=5;
pts:
points input=@dat->output;
linestrips input=@dat->output set( Y=0 ) every(count=10);
linestrips input=[@dat | set(Y=0,Z=5) ];
linestrips input= @dat => set(Y=0,Z=5) => filter(count=10);
linestrips input=pipe {
clone input=@dat
set (Y=0)
set (Z=5)
filter (....)
}
linestrips input=( @dat | Q:set( Y=0 )
| set( Z=5 )
| filter(...,sigma=@Q->sigma)
);
p1: pipe
{
clone input=@dat
set (Y=0)
set (Z=5)
filter (....)
}
linestrips input=@p1->output
linestrips input=@dat->output | set( Y=0 ) | every(count=10);
sl1: slider name="Y" min=10 max=50
@dat | set (Y=@sl1->value Z=...) kuku(ZZ=15) | every(count=10,theta=15) | linestrips;
// идея номер 1 это скопировать тело pts
// идея номер 2 это вставить ссылку на @pts и добавить типа project-on-xyz0 или тот же set...
//pts-on-ground: points input=@dat->output set( Y=0 )
//test