source: trunk/examples/zoo/cloud/README @ 6716

Last change on this file since 6716 was 3714, checked in by gah, 11 years ago

remove examples of deprecated meshes

File size: 1.1 KB
Line 
1
2The <cloud> element is deprecated in favor of the <mesh>.
3See the mesh example under examples/zoo/mesh.
4
5If you already have a <cloud>, you should convert it to use
6the <mesh> element.  For example,
7
8 <cloud>
9    <about>
10        <label>cloud (deprecated)</label>
11    </about>
12    <dim>2</dim>
13    <units>m</units>
14    <hide>yes</hide>
15    <points>
16       0.0 0.0
17       ...
18    </points>
19 </cloud>
20
21should be converted to
22
23 <mesh>
24    <about>
25        <label>cloud in unstructured mesh</label>
26    </about>
27    <dim>2</dim>
28    <units>m</units>
29    <hide>yes</hide>
30    <unstructured>
31        <points>
32          0.0 0.0
33          ...
34        </points>
35    </unstructured>
36 </mesh>
37
38Please note that a cloud should be used when your output has no geometry (it's
39really just a cloud of points).  If your output contains a mesh that has a
40geometry (for example, a uniform grid) use that mesh.  The mesh generated from
41a cloud of points may be very different what your tool produced.
42
43See the mesh documentation for more information.
44
45  https://nanohub.org/infrastructure/rappture/wiki/rp_xml_ele_mesh
46
47
48
Note: See TracBrowser for help on using the repository browser.