From 1a381eb2eca5ad8743da52daa808f65cff716af0 Mon Sep 17 00:00:00 2001 From: Rod Kay Date: Fri, 28 Apr 2023 21:57:53 +1000 Subject: [PATCH] opengl.model.hexagon: Document vertex site order. --- 3-mid/opengl/source/lean/model/opengl-model-hexagon.ads | 2 ++ 1 file changed, 2 insertions(+) diff --git a/3-mid/opengl/source/lean/model/opengl-model-hexagon.ads b/3-mid/opengl/source/lean/model/opengl-model-hexagon.ads index 0c821ce..0519546 100644 --- a/3-mid/opengl/source/lean/model/opengl-model-hexagon.ads +++ b/3-mid/opengl/source/lean/model/opengl-model-hexagon.ads @@ -6,6 +6,8 @@ is type Item is abstract new Model.item with private; + -- Sites begin at middle right and proceed in an anti-clockwise direction. + -- subtype site_Id is Integer range 1 .. 6; type Sites is array (site_Id) of Vector_3;