zoukankan      html  css  js  c++  java
  • VRML之desk

    #VRML V2.0 utf8

    Transform {
     translation 0.0 1.5 0.0
     children [
      Shape {
       appearance DEF WOOD Appearance {
        material Material {
         diffuseColor 0.6 0.4 0.0
        }
       }
       geometry Box {
        size 2.0 0.1 1.0
       }
      }
     ]
    }

    Transform {
     translation -0.95 1.25 0.0
     children [
      Shape {
       appearance USE WOOD
       geometry Box {
        size 0.1 0.5 1.0
       }
      }
     ]
    }

    Transform {
     translation 0.95 1.25 0.0
     children [
      Shape {
       appearance USE WOOD
       geometry Box {
        size 0.1 0.5 1.0
       }
      }
     ]
    }

    Transform {
     translation 0.0 1.0 0.0
     children [
      Shape {
       appearance USE WOOD
       geometry Box {
        size 2.0 0.1 1.0
       }
      }
     ]
    }

    Transform {
     translation 0.0 1.25 -0.45
     children [
      Shape {
       appearance USE WOOD
       geometry Box {
        size 2.0 0.5 0.1
       }
      }
     ]
    }

    Transform {
     translation -0.9 0.5 0.3
     children [
      Shape {
       appearance DEF BAR Appearance {
        material Material {
         diffuseColor 0.6 0.7 0.6
        }
       }
       geometry Cylinder {
        height 1.0
        radius 0.05
        bottom TRUE
       }
      }
     ]
    }

    Transform {
     translation -0.9 0.5 -0.3
     children [
      Shape {
       appearance USE BAR
       geometry Cylinder {
        height 1.0
        radius 0.05
        bottom TRUE
       }
      }
     ]
    }

    Transform {
     translation -0.9 0.0 0.0
     children [
      Shape {
       appearance USE BAR
       geometry Box {
        size 0.2 0.03 0.8
       }
      }
     ]
    }

    Transform {
     translation 0.9 0.5 0.3
     children [
      Shape {
       appearance USE BAR
       geometry Cylinder {
        height 1.0
        radius 0.05
        bottom TRUE
       }
      }
     ]
    }

    Transform {
     translation 0.9 0.5 -0.3
     children [
      Shape {
       appearance USE BAR
       geometry Cylinder {
        height 1.0
        radius 0.05
        bottom TRUE
       }
      }
     ]
    }

    Transform {
     translation 0.9 0.0 0.0
     children [
      Shape {
       appearance USE BAR
       geometry Box {
        size 0.2 0.03 0.8
       }
      }
     ]
    }



    e-mail:shisong.zhu@gmail.com
    GISer in China, for engineering
  • 相关阅读:
    python-数据结构代码 图(邻接表)
    python-数据结构代码 查找树
    day013内置函数一
    day012生成器函数、生成器表达式、列表推导式
    day011 函数名的运用,闭包,迭代器
    day010 动态传参、函数嵌套、命名空间、作用域
    day009 初识函数
    day008文件操作及应用
    day007深度拷贝和数据补充、set去重、fromkeys
    day006 小数据池,再谈编码
  • 原文地址:https://www.cnblogs.com/columbus2/p/2867169.html
Copyright © 2011-2022 走看看