From 8a8d809f9ca42ca15a63733118cd6adbd425b6fd Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Tue, 15 Dec 2020 11:58:17 +0800 Subject: [PATCH] update doc --- docs/lib2x-fibonacci_lattice.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/lib2x-fibonacci_lattice.md b/docs/lib2x-fibonacci_lattice.md index 627fb6c2..e8d12eac 100644 --- a/docs/lib2x-fibonacci_lattice.md +++ b/docs/lib2x-fibonacci_lattice.md @@ -1,6 +1,6 @@ # fibonacci_lattice -Creates visually even spacing of n points on the surface of the sphere. Nearest-neighbor points will all be approximately the same distance apart. There're 10 spirals on the sphere. +Creates visually even spacing of n points on the surface of the sphere. Nearest-neighbor points will all be approximately the same distance apart. There're 8 spirals on the sphere. (It's called "visually even spacing" because only the vertices of the 5 [Platonic solids](https://en.wikipedia.org/wiki/Platonic_solid) can be said to be truly evenly spaced around the surface of a sphere.) @@ -42,7 +42,7 @@ Creates visually even spacing of n points on the surface of the sphere. Nearest- sphere(radius); - spirals = [for(j = [0:9]) + spirals = [for(j = [0:7]) [for(i = j; i < len(pts); i = i + 8) pts[i]] ];