From e28c428ef727457f1824c82046e5922508a5d8c4 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 28 Nov 2023 22:38:26 +0000 Subject: [PATCH] vector3: doc comment layout --- worldeditadditions_core/utils/vector3.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/worldeditadditions_core/utils/vector3.lua b/worldeditadditions_core/utils/vector3.lua index 8bb7093..1dd749b 100644 --- a/worldeditadditions_core/utils/vector3.lua +++ b/worldeditadditions_core/utils/vector3.lua @@ -413,6 +413,7 @@ end --- Rotate a given point around an origin point in 3d space. -- Consider 3 axes (X, Y, and Z) that are centred on origin. This function -- rotates point around these axes in the aforementioned order. +-- -- NOTE: This function is not as intuitive as it sounds. -- A whiteboard and a head for mathematics is recommended before using this -- function. Either that, or Blender 3 (https://blender.org/) is quite useful to visualise what's going on.