Right now I'm using this to paint the XYZ axes.
I need to know how I can also paint the -X,-Y,-Z axes.
const axesHelper = new THREE.AxesHelper(100);
const xColor = new THREE.Color(0xff0000);
const yColor = new THREE.Color(0x00ff11);
const zColor = new THREE.Color(0x0037ff);
axesHelper.setColors(xColor, yColor, zColor);
scene.add(axesHelper);
I guess I can't use the AxesHelper method, how could I do it manually?
The axles in orange are the ones that would need to be painted
A quick and janky aproach would be to add a second AxesHelper with size set to -100.
For a more complete manual solution, I would refer to or extend the code from the axis helper class that you can find here. You could write up something like:
Make sure to add the imports and dispose function (and color change method if you want it)