File: Example_RSL_copy.html

package info (click to toggle)
librsl 1.42-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,836 kB
  • sloc: ansic: 16,950; sh: 8,544; yacc: 316; perl: 151; lex: 94; makefile: 61
file content (31 lines) | stat: -rw-r--r-- 491 bytes parent folder | download | duplicates (3)
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
<head>
</head>

<body>
<a HREF="index.html"> <IMG SRC="rsl.gif"> </a>
<hr>


<pre>#include &quot;rsl.h&quot;

main()
{
Radar *radar;
Volume *dz_copy;
Sweep *s1_copy;
Ray r33_copy;

radar = RSL_wsr88d_to_radar(&quot;nex.file.2&quot;, &quot;KMLB&quot;);

/* Copy of Volume for DZ. */
dz_copy = RSL_copy_volume(radar-&gt;v[DZ_INDEX]);

/* Copy of Sweep 1. */
s1_copy = RSL_copy_sweep(dz_copy-&gt;sweep[0]);

/* Copy of Ray 33. */
r33_copy = RSL_copy_ray(s1_copy-&gt;ray[32]);
}
</pre>

</body>