これは簡単な質問です。x3dom シェイプにグラデーションを適用するにはどうすればよいですか? 私はこれを持っています:
<shape>
<appearance>
<material diffuseColor='green'></material>
</appearance>
<box height="1" />
</shape>
これは簡単な質問です。x3dom シェイプにグラデーションを適用するにはどうすればよいですか? 私はこれを持っています:
<shape>
<appearance>
<material diffuseColor='green'></material>
</appearance>
<box height="1" />
</shape>
残念ながら、ほとんどのプリミティブ形状では不可能です。x3d リストでこのスレッドを見つけました http://www.web3d.org/x3d/publiclists/x3dpublic_list_archives/0504/msg00104.html
円柱でそれを行う方法は次のとおりです。肉とじゃがいものピクセルテクスチャに注意してください。
<X3D>
<Scene>
<NavigationInfo headlight='FALSE' type='"EXAMINE" "ANY"' />
<DirectionalLight ambientIntensity='0.5' direction='1 -0.5 -1' />
<Viewpoint DEF='VP1' position='0 0 10' orientation='0 1 0 0' fieldOfView='0.785398' description = "Front" />
<Transform translation='0 0 0'>
<Shape>
<Appearance>
<Material/>
<PixelTexture image='1 2 3 0xFF0000 0x0000FF' repeatS='FALSE' repeatT='FALSE' />
</Appearance>
<Cylinder height='4' />
</Shape>
</Transform>
</Scene>
</X3D>