Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

COLEGIO DE BOYACÁ Formato

SISTEMA INTEGRADO DE GESTIÓN PP-FR-02


PROCESO PRÁCTICAS PEDAGÓGICAS Fecha: 15/12/12
CÓDIGO BÁSICO EN VRML Página 1 de 2

PROGRAMACIÓN EN VRML
GRADO 9º - 2019
3º PERIODO

#---------------------------------- CUBO ---------------------------------


Transform {
children [
Shape {
appearance Appearance {
material Material {
diffuseColor 1.0 0.0 0.0
}
}
geometry Box {
size 2.0 2.0 2.0
}
}
]
}

#--------------------------------- CONO ---------------------------------

Transform {
children [
Shape {
appearance Appearance {
material Material {
diffuseColor 1.0 0.0 0.0
}
}
geometry Cone {
height 3.5
bottomRadius 0.8
}
}
]
}
#------------------------------ CILINDRO ---------------------------------

Transform {
children [
Shape {
appearance Appearance {
material Material {
diffuseColor 1.0 0.0 0.0
}
}
geometry Cylinder {
height 3.5
radius 1.0
}
}
]
}

#------------------------------ ESFERA ---------------------------------

Transform {
children [
Shape {
appearance Appearance {
material Material {
diffuseColor 1.0 0.0 0.0
}
}
geometry Sphere {
radius 1.5
}
}
]
}

You might also like