x3dom - Classroom Cardboard - 如何加载 .x3d 文件?
x3dom - Classroom Cardboard - how to load .x3d files?
这个 Classroom Cardboard example is using the x3dom framework to display 3d scenes. The example uses .bin files for their 3d objects. I want to use this example to load .x3d files instead of .bin files, but so far it doesn't render properly. I have tried loading examples from here 使用像这样的内联标签
<background DEF='bgnd' skyColor="0 0 0"></background>
<group id='root' render='true'>
<group DEF='theScene'>
<Inline url="AllenDutton.x3d" render="true"></Inline>
</group>
</group>
This 是它的样子。我需要一些关于如何正确加载 .x3d 文件的帮助。
谢谢
您的视点离模型太近了。您可以使用滚轮缩放in/out。不幸的是,当您走得足够远开始看到整个模型时,远裁剪平面切入并且模型被剔除出显示。
在声明中
<viewpoint id='vpp' ,.. position='4.17102 1.00905 -6.97228' ... zFar="300">
把 zFar 改大一点,450 应该就够了。理想情况下,您还需要将位置更改为沿线 运行 通过位置点和模型更远。最初,滚轮更容易。
其他背景信息:
这个 Classroom Cardboard example is using the x3dom framework to display 3d scenes. The example uses .bin files for their 3d objects. I want to use this example to load .x3d files instead of .bin files, but so far it doesn't render properly. I have tried loading examples from here 使用像这样的内联标签
<background DEF='bgnd' skyColor="0 0 0"></background>
<group id='root' render='true'>
<group DEF='theScene'>
<Inline url="AllenDutton.x3d" render="true"></Inline>
</group>
</group>
This 是它的样子。我需要一些关于如何正确加载 .x3d 文件的帮助。
谢谢
您的视点离模型太近了。您可以使用滚轮缩放in/out。不幸的是,当您走得足够远开始看到整个模型时,远裁剪平面切入并且模型被剔除出显示。
在声明中
<viewpoint id='vpp' ,.. position='4.17102 1.00905 -6.97228' ... zFar="300">
把 zFar 改大一点,450 应该就够了。理想情况下,您还需要将位置更改为沿线 运行 通过位置点和模型更远。最初,滚轮更容易。
其他背景信息: