Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Mobile

Importing 3D Models into Mobile Java Devices


Two Rendering Modes

The presence of scene-graph support classes underscore that M3G supports "immediate" and "retained" rendering modes. In immediate mode, objects are rendered at once, applying the lighting conditions from an array of current Lights and a current Camera that determines the final image's POV. Objects rendered in immediate mode can be portions of a scene graph or individual meshes. Immediate mode offers low-level control of the rendering operations.

In retained mode, rendering operations are managed at a higher level. Each model's geometric data and appearance attributes are encapsulated in instances of scene-graph objects stored within a scene graph. A scene graph consists of a tree structure of data that describes all of the objects in a 3D world, along with its Lights and Cameras. These classes contain visibility flags and instances of them can be made visible or invisible under program control. In retained mode, scenes aren't rendered all at once. Instead, the rendering engine traverses the scene-graph tree, using the visibility flags, object positions, and POV to cull surfaces before rendering final images. This lets the rendering operation be optimized for performance. Only one Camera can be active at a time. Choosing a different Camera and making it the active one lets you immediately change the scene's POV.

Because the immediate-mode operation allows access to low-level primitives, you can define a model's surfaces through the use of algorithms or VertexArrays. However, for complex models it's easier and less memory-intensive to have Loader read the model from a scene graph stored in an M3G file.


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.