I'm rendering a grid using Three.js (v0.86.0):
let grid = new THREE.GridHelper(1000, 20);
scene.add(grid);
The lines generated by GridHelper
seem to have a thickness of 1 pixel.
I'd like to increase the thickness of lines to 3 pixels, but have no idea how to do it. I tried changing the value of grid.geometry.getAttribute("position").itemSize
but it doesn't work.
Any ideas?