测量3d模型的距离?

时间:2014-03-02 13:59:54

标签: javascript html5 three.js webgl

我想让卷尺看起来如下图所示:

enter image description here

此处指向产品图片的链接:Link,他们也使用Webgl,但不使用Three.js

那么,如何在Three.js制作三维模型的卷尺?

感谢。

1 个答案:

答案 0 :(得分:7)

使用this example作为参考,你应该能够找出你点击几何体的位置。

获得这些要点只是这样做的事情:

var distance = point1.distanceTo( point2 );