From 9cef0e5998b021eb7c93ae5649cfe66a6d1d8062 Mon Sep 17 00:00:00 2001 From: Aiekick Date: Sun, 25 Feb 2024 14:19:28 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d18b7f2..26f6f4a 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ int main() for (int32_t j = -SIZE; j < SIZE; ++j) { float len = (i * i + j * j) * len_ratio; int32_t pz = (int32_t)((std::sin(len * 10.0 + time) * 0.5 + 0.5) * (std::abs(50.0f - 25.0f * len)) * Z_SCALE); - vdb.addVoxelDensity(i + OFFSET, j + OFFSET, pz, 1.0f); // magicavoxel use the z as up axis + vdb.addVoxelDensity(i + OFFSET, j + OFFSET, pz, 1.0f); // blender3D use the z as up axis } } time += 0.5f;