To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

Scene description language

From Wikipedia, the free encyclopedia

A scene description language is any description language used to describe a scene to a 3D renderer, such as a ray tracer. The scene is written in a text editor (which may include syntax highlighting), as opposed to being modeled in a graphical way, but a 3D modelling program may allow for a scene to be exported to a specified scene description language.

Some scene description languages may include variables, constants, conditional statements, and while and for loops.

For example, 3DMLW and X3D are XML-based scene description languages; YafaRay also employs an XML-based language. Tao Presentations uses XL as a dynamic document description language. POV-Ray has its own Turing-complete language.

YouTube Encyclopedic

  • 1/3
    Views:
    20 461
    4 668
    748
  • WRITING (112 ) - B1 - U6 : Describing a Scene (4)
  • Movie #1: Describing a Scene: California Beach
  • Photo Description 2 - Describing a Scene - Speaking Practice - FCE IELTS CAE CPE - British English

Transcription

Examples

POV-Ray

POV-Ray image output based on the script
 #declare the_angle = 0;

 #while (the_angle < 360)
 	box {   <-0.5, -0.5, -0.5>
 		<0.5, 0.5, 0.5>
                texture { pigment { color Red }
                          finish  { specular 0.6 }
                          normal  { agate 0.25 scale 1/2 } }
 		rotate the_angle }
 	#declare the_angle = the_angle + 45;
 #end

3DMLW

<?xml version="1.0" standalone="no"?>
<document>
  <content2d>
    <area width="200" height="100" color="#C0C0C0FF" texture="flower.png" />
  </content2d>
  <content3d id="content" camera="{#cam}">
    <camera id="cam" class="cam_rotation" y="10" z="40" viewy="10"/>
    <box name="ground" width="100" height="2" depth="100" color="green" class="ground" />
    <box name="dynamic" y="20" width="10" height="10" depth="10" color="blue" />
  </content3d>
</document>

X3D

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE X3D PUBLIC "ISO//Web3D//DTD X3D 3.2//EN" "http://www.web3d.org/specifications/x3d-3.2.dtd">

<X3D profile="Interchange" version="3.2" xmlns:xsd="http://www.w3.org/2001/XMLSchema-instance" xsd:noNamespaceSchemaLocation=" http://www.web3d.org/specifications/x3d-3.2.xsd ">
<Scene>
  <Shape>
    <IndexedFaceSet coordIndex="0 1 2">
      <Coordinate point="0 0 0 1 0 0 0.5 1 0"/>
    </IndexedFaceSet>
  </Shape>
</Scene>
</X3D>
Real-time 3D rendering of a scene described using Tao Presentations document description language

Tao Presentations

clear_color 0, 0, 0, 1
light 0
light_position 1000, 1000, 1000
draw_sphere with 1..50

rotatey 0.05 * mouse_x
text_box 0, 0, 800, 600,
    extrude_depth 25
    extrude_radius 5
    align_center
    vertical_align_center
    font "Arial", 300
    color "white"
    text "3D"
    line_break
    font_size 80
    text zero hours & ":" & zero minutes & ":" & zero seconds

draw_sphere N ->
    locally
        color_hsv 20 * N, 0.3, 1
        translate 300*cos(N*0.1+time), 300*sin(N*0.17+time), 500*sin(N*0.23+time)
        sphere 50

zero N -> if N < 10 then "0" & text N else text N

See also


This page was last edited on 23 June 2023, at 00:36
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.