-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.txt
60 lines (46 loc) · 886 Bytes
/
code.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
49
50
51
52
53
54
55
56
57
58
59
60
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";
load files="std_gui_v1.txt";
//std_gui_v1;
dat:
load-csv file="phase_yScaled2.csv" sigma=5;
pts:
points input=@dat->output;
projected: @dat | skip_every count=10 | set Y=0;
@projected | linestrips;
@projected | points;
// dat_scaled: @dat | scaling column="Y" method="log";
/*
pipe1: pipe {
output=@dat->output;
skip_every count=10;
set Y=0;
linestrips points;
};
*/
/*
screen {
render3d {
find criteria="primary";
}
params-area;
render3d {
@selected | gltf model="ship.glb";
}
};
*/
/*
screen {
column {
button text="alfa";
button text="beta";
render3d {
@dat | linestrips;
};
render3d {
@dat | points;
};
}
}
*/