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
  • 相关阅读:
    js中location.href的用法
    entityframework单例模式泛型用法
    [C#]从URL中获取路径的最简单方法-new Uri(url).AbsolutePath
    等到花儿也谢了的await
    ASP.NET MVC下的异步Action的定义和执行原理
    实际案例:在现有代码中通过async/await实现并行
    ASP.NET MVC Controllers and Actions
    扩展HtmlHelper
    iOS开发网络篇—XML数据的解析
    IOS学习:常用第三方库(GDataXMLNode:xml解析库)
  • 原文地址:https://www.cnblogs.com/columbus2/p/2867169.html
Copyright © 2011-2022 走看看