diff --git a/src/app/components/PlanetaryInteraction/PinsCanvas3D.tsx b/src/app/components/PlanetaryInteraction/PinsCanvas3D.tsx index 6f53e1a..e999cec 100644 --- a/src/app/components/PlanetaryInteraction/PinsCanvas3D.tsx +++ b/src/app/components/PlanetaryInteraction/PinsCanvas3D.tsx @@ -70,7 +70,8 @@ const PinsCanvas3D = ({ const theta = p.longitude; vectorPI.setFromSphericalCoords(SPHERE_RADIUS, phi, theta); dotGeometryPI.lookAt(vectorPI); - dotGeometryPI.translate(vectorPI.x, vectorPI.y, vectorPI.z); + dotGeometryPI.translate(vectorPI.x, vectorPI.y, vectorPI.z - 0.1); + console.log(vectorPI.z); dotGeometriesPI.push(dotGeometryPI); });