From ef67495aef6d6b12bc4d074df1d719a25428ab31 Mon Sep 17 00:00:00 2001 From: Cat Flynn Date: Thu, 3 Aug 2023 01:21:18 +0200 Subject: [PATCH] doc: add isosphere implementation source link --- src/icosphere.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/icosphere.hpp b/src/icosphere.hpp index 908aee6..9e6df3f 100644 --- a/src/icosphere.hpp +++ b/src/icosphere.hpp @@ -23,6 +23,8 @@ private: std::vector _vertices; std::vector _indices; + // Generating an isosphere + // https://schneide.blog/2016/07/15/generating-an-icosphere-in-c/ struct Triangle { int vertex[3];