哪儿有vrmledit2.0下载?并且帮忙看一下代码
不好意思,由于没有vrml论坛,只好在此张贴此文了.
由于是首次接触vrml,下面的代码不知道哪儿错了,请高手指点
代码是:
#VRML V2.0 utf8
Group{
children[
DEF box Tranform{
translation 5 0 0
children[
Shape{
appearance Appearance{
material Material{ diffuseColor 1 0 0 }
}
geometry Box{}
}
]
}
DEF sphere Tranform{
translation 0 0 0
children[
Shape{
appearance Appearance{
material Material { diffuseColor 0 1 0 }
}
geometry sphere{}
}
]
}
DEF cone Tranform{
translation -5 0 0
children[
Shape{
appearance Appearance{
material Material{ diffuseColor 0 0 1 }
}
geometry cone{}
}
]
}
]
}