three.js:version:0.121 when I execute this piece of code,
new THREE.ParametricGeometry( func, 200, 10)
var func(u, v, point){
console.log(u,v)
}
output:
0 0
0.00001 0
0 0.00001
0.005 0
0.0049900000000000005 0
0.005 0.00001
0.01 0
0.00999 0
0.01 0.00001
0.015 0
0.01499 0
0.015 0.00001
0.02 0
0.01999 0
0.02 0.00001
0.025 0
...
it appears to be an inaccurate division
when running a similar script in version:0.74
new THREE.ParametricGeometry( func, 200, 10)
var func(u, v){
console.log(u,v)
}
0 0
0.005 0
0.01 0
0.015 0
0.02 0
0.025 0
0.03 0
0.035 0
0.04 0
0.045 0
0.05 0
0.055 0
0.06 0
0.065 0
···
So why does this discrepancy occur, with version 0.121 failing to display the outcome correctly?