gpt4 book ai didi

three.js - 缩放对象以适合特定边界框three.js

转载 作者:行者123 更新时间:2023-12-04 03:02:31 25 4
gpt4 key购买 nike

在我的项目中,我正在动态加载不同类型的模型。如何缩放加载的对象,使其完全适合某个边界框?

为了澄清这种情况,我不希望加载的对象适合我的 FOV。我的场景中已经加载了一座房子。我希望新加载的对象适合我的房子。

最佳答案

由于您确实有房屋的边界框(称为 boxH)和对象的边界框(称为 boxO),因此取边界框大小的比率

var sizeH = boxH.getSize(); // get the size of the bounding box of the house
var sizeO = boxO.getSize(); // get the size of the bounding box of the obj

var ratio = sizeH.divide( sizeO ); // get the ratio of the sizes

现在 scale()您的对象由 ratio 中的逆最大值多变的。

关于three.js - 缩放对象以适合特定边界框three.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47868151/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com