Vec3.rotateZ(rotateResult, v3(8, 0, 0), v3(0, 0, 1), 90 * Math.PI / 180)
为什么得到的结果不是 0,8,0
这个其实就是0,8,0。4.8e-16次幂和0也没啥区别。 主要是number的问题,这个是js的问题
好的,感谢回复