I am using three js and need a way to draw lines that have a thickness greater that 1px. Whenever I use LineBasicMaterial
and try to change the lineWidth
property, nothing happens. There is already a reason related to Windows Chrome versions so I am asking if there are any good, working alternatives that can help me achieve thick lines.
Here is the material:
const material = new THREE.LineBasicMaterial({
color: "red",
lineWidth: 20
});