我需要在x3d中设置内联对象的大小

时间:2012-11-03 15:44:12

标签: x3d x3dom

我需要在x3d中设置内联对象的大小。任何人都可以帮我这个吗?

1 个答案:

答案 0 :(得分:2)

您可以将内联包装在变换中,然后您可以通过更改变换的比例来更改内联的大小。

例如:http://jsfiddle.net/wildpeaks/ZZfb2/2/


<X3D width="400px" height="300px" showStat="true">
    <Scene>
        <Transform id="redBox">
            <Inline url="http://x3dom.org/x3dom/example/scene/redBox.x3d" />
        </Transform>
    </Scene>
</X3D>

<button onclick="change_size()">Click to change the size</button>

function change_size() {
    document.getElementById('redBox').setAttribute('scale', '3 0.5 1');
}​