1

如何使用 x3dom 绘制除立方体以外的形状?例如,我要绘制的一种形状是半圆形/圆柱体。我只能找到文档来绘制我已经做过的立方体。我还没有为 x3dom 找到好的文档。

4

2 回答 2

3

X3DOM actually just wraps X3D. So you may better start with the X3D documentation. A quite good overview can be found here: X3D Slides.

There are some other primitives provided like:

<Shape>
  <Sphere radius='1'/>
  <Appearance>
    <Material/>
  </Appearance>
</Shape>

Also the examples provide a good starting point.

于 2013-02-27T11:44:20.673 回答
0

要使用圆柱体,只需在形状节点中使用它

<Cylinder />

正如 misapink 所说,查看 x3d 文档,有一些基本的 x3d 基元,例如球体盒圆柱体锥体。

任何更精细的东西都需要您使用点集等,或者您可以对自己的对象进行建模并通过许多 3d 应用程序、blender、3d max、lightwave 等导出到 x3d

于 2013-02-27T22:27:06.860 回答