Nighrix

Results 1 issues of Nighrix

// TerrainFace.cs File // Based of https://mathproofs.blogspot.com/2005/07/mapping-cube-to-sphere.html ``` Vector3 CubeToSphere(Vector3 cubePos) { float x2 = cubePos.x * cubePos.x; float y2 = cubePos.y * cubePos.y; float z2 = cubePos.z * cubePos.z;...