I need assistance with removing the parameters widthSegments
and heightSegments
.
When I modify this line of code:
var tergeo= new THREE.PlaneGeometry(100, 100, 1, 1);
to:
var tergeo= new THREE.PlaneGeometry(100, 100, 0, 0);
The changes do not produce the desired result.
What is the correct approach to eliminate widthSegments and heightSegments in the following jsFiddle ?