# AmiraMesh ASCII 1.0
or
# AmiraMesh 3D ASCII 2.0
define Lines <NUM_L>
define Vertices <NUM_V>
NUM_L
is the number of lines and NUM_V
is the number of vertices, Parameters {
ContentType "HxLineSet"
}
4) Define data arrays, of the size required for the actual sample
data, which follows.
Vertices { float[3] Coordinates } = @1
Vertices { float Data } = @2
Lines { int LineIdx } = @3
@1 # <NUM_V> xyz Coordinates
x1 y1 z1
x2 y2 z2
..
..
..
6) Radius array @2 # <NUM_V> width values
r1
r2
..
..
..
7) Line segments, indicating connectivity
@3 # <NUM_L> line segments
0 1 .... N -1
(N+1) (N+2) .... M -1
..
..
..
References