remove rogue console log

This commit is contained in:
Calli
2023-07-02 23:53:21 +03:00
parent 8f0b19d255
commit 627685a7a9

View File

@@ -71,7 +71,6 @@ const PinsCanvas3D = ({
vectorPI.setFromSphericalCoords(SPHERE_RADIUS, phi, theta); vectorPI.setFromSphericalCoords(SPHERE_RADIUS, phi, theta);
dotGeometryPI.lookAt(vectorPI); dotGeometryPI.lookAt(vectorPI);
dotGeometryPI.translate(vectorPI.x, vectorPI.y, vectorPI.z - 0.1); dotGeometryPI.translate(vectorPI.x, vectorPI.y, vectorPI.z - 0.1);
console.log(vectorPI.z);
dotGeometriesPI.push(dotGeometryPI); dotGeometriesPI.push(dotGeometryPI);
}); });