Policy change. Edit privileges will now require email addresses to be confirmed. (Details) --Michael Mol 14:53, 14 March 2012 (UTC)

Load animated 3D data

From Rosetta Code
(Redirected from Loading Animated 3D Data)
Jump to: navigation, search
Load animated 3D data is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.

OpenGL commonly requires the facility to be able to obtain geometric data and supplementary information, such as animation data, from a file. The task is to obtain data from a given file and place into appropriately organized X3D data structures. The Smil animation statements found within the file should be stored in an XML record, because X3D data structures are not supposed to contain Smil data.

Here is the pure X3D base of our file containing only geometry:

<?xml version="1.0" ?>
<X3D>
<Scene>
<Viewpoint position="0 0 8" orientation="0 0 1 0"/>
<PointLight color='1 1 1' location='0 2 0'/>
<Transform translation='0.0 0.0 0.0' scale='1 1 1'>
<Shape>
<Box size='2 1 2'/>
<Appearance>
<Material diffuseColor='0.0 0.6 1.0'/>
</Appearance>
</Shape>
</Transform>
</Scene>
</X3D>

And here is the same data with additional Smil statments that you should load, display and animate with OpenGL (or something else):

<?xml version="1.0" ?>
<smil>
<X3D>
<Scene>
<Viewpoint position="0 0 8" orientation="0 0 1 0"/>
<PointLight color='1 1 1' location='0 2 0'/>
<Transform translation='0.0 0.0 0.0' scale='1 1 1'>
<Shape>
<Box size='2 1 2'>
<animate attributeName="size" from="2 1 2"
to="1 2 1" begin="0s" dur="10s"/>
</Box>
<Appearance>
<Material diffuseColor='0.0 0.6 1.0'>
<animate attributeName="diffuseColor" from="0.0 0.6 1.0"
to="1.0 0.4 0.0" begin="0s" dur="10s"/>
</Material>
</Appearance>
</Shape>
</Transform>
</Scene>
</X3D></smil>

In the example file, there is only a <Box> primitive, try to implement the primitives below too:

  <Sphere radius="1"/>
<Cylinder radius="1" height="2"/>
<Cone bottomRadius="1" height="2"/>

If you are in shape, try to implement the <seq> tag too (def, ex.), we could for example put successivelly a Box, a Sphere, a Cone into it.

It should be possible to insert "animate" tags against every attribute of the base file and it is important to be able to insert timelines into the data structure.

Warnings:

  • This task is a draft, you can modify it if you find a way to enhance it,
  • The coordinates in the X3D data are not important. For example, the provided box data may not be positioned centrally to the viewpoint, Please fix this if you can.


[edit] OCaml

See Loading animated 3D data/OCaml

Personal tools
Namespaces
Variants
Actions
Community/News
Browse wiki
Misc
Toolbox