Is there a way to create an axis helper similar to the images below, positioned in both the top left corner and center of the scene? Currently, when using axesHelper in Three.js, the lines lack arrows at the end and appear too thin. Here is the code snippet I have been using:
// Create and add axis helpers
const axesHelper = new THREE.AxesHelper(10); // Adjust length as needed
scene.add(axesHelper);
The current output looks like this: https://i.sstatic.net/UxGx6rED.png
However, what I am aiming for is something more like the image shown below: https://i.sstatic.net/oSDYa5A4.png