From 5855e4a5d04a2d0c29fc3f1dcf99db1288bda176 Mon Sep 17 00:00:00 2001 From: spatialfree Date: Fri, 8 Nov 2024 21:52:15 -0500 Subject: [PATCH] direction corners --- src/Mono.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/Mono.cs b/src/Mono.cs index 13a01fe..fca97db 100644 --- a/src/Mono.cs +++ b/src/Mono.cs @@ -215,4 +215,15 @@ static class Mono new XYZi(0, 0, -1), // fwd new XYZi(0, 0, +1), // back }; + static readonly XYZi[] corners = new XYZi[] + { + new XYZi(-1, -1, -1), + new XYZi(-1, -1, +1), + new XYZi(-1, +1, -1), + new XYZi(-1, +1, +1), + new XYZi(+1, -1, -1), + new XYZi(+1, -1, +1), + new XYZi(+1, +1, -1), + new XYZi(+1, +1, +1) + }; }