Images in memory and the 3D visualization: Difference between revisions

From Computer Science Wiki
(Created page with "right|frame|Modeling & Simulation<ref>http://www.flaticon.com/</ref> 3D visualizations must be built (or constructed) from an object. These objects mu...")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[file:simulation.png|right|frame|Modeling & Simulation<ref>http://www.flaticon.com/</ref>]]
[[file:simulation.png|right|frame|Modeling & Simulation<ref>http://www.flaticon.com/</ref>]]


3D visualizations must be built (or constructed) from an object. These objects must then be rendered into 3D models. In general only the face of the object you are viewing is visible, and as the object starts to turn (or move) the face ''you are about to view'' starts to be rendered.  
3D visualizations must be built (or constructed) from a mathematical representation of an object. These objects must then be rendered into 3D models. In general only the face of the object you are viewing is visible, and as the object starts to turn (or move) the face ''you are about to view'' starts to be rendered.  


The more complex the model, the more computational resources are required to render (create) the visualization.


The basic process of rendering looks like this:
<br />
Rendering:
# Applies light and texture to a model
# Uses such techniques as ray tracing
# The ray tracing is applied to a (wireframe) 2D representation
# Which produces a realistic view of the final product in the chosen material
== Helpful Links ==
* Please look at this for an example of a pretty simple 3D model: https://threejs.org/examples/#webgl_loader_assimp
*


== Standards ==
== Standards ==

Latest revision as of 09:37, 31 January 2019

Modeling & Simulation[1]

3D visualizations must be built (or constructed) from a mathematical representation of an object. These objects must then be rendered into 3D models. In general only the face of the object you are viewing is visible, and as the object starts to turn (or move) the face you are about to view starts to be rendered.

The more complex the model, the more computational resources are required to render (create) the visualization.

The basic process of rendering looks like this:
Rendering:

  1. Applies light and texture to a model
  2. Uses such techniques as ray tracing
  3. The ray tracing is applied to a (wireframe) 2D representation
  4. Which produces a realistic view of the final product in the chosen material

Helpful Links[edit]

Standards[edit]

  • Outline the relationship between the images in memory and the 3D visualization.

References[edit]