From b6b668687354a2678df671d87e5f5d78e19d3a45 Mon Sep 17 00:00:00 2001 From: smiki Date: Fri, 25 Jul 2025 23:43:00 +0200 Subject: [PATCH] [ADDED] `COORDINATE:GetLandProfile` --- Moose Development/Moose/Core/Point.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Moose Development/Moose/Core/Point.lua b/Moose Development/Moose/Core/Point.lua index 0d3c7f21d..09af3b47e 100644 --- a/Moose Development/Moose/Core/Point.lua +++ b/Moose Development/Moose/Core/Point.lua @@ -837,7 +837,7 @@ do -- COORDINATE return land.getHeight( Vec2 ) end - --- Returns a table of `Vec3` points representing the terrain profile between two points. + --- Returns a table of DCS#Vec3 points representing the terrain profile between two points. -- @param #COORDINATE self -- @param Destination DCS#Vec3 Ending point of the profile. -- @return #table DCS#Vec3 table of the profile @@ -845,7 +845,7 @@ do -- COORDINATE return land.profile(self:GetVec3(), Destination) end - --- Returns a table of `Vec3` points representing the terrain profile between two points. + --- Returns a table of #COORDINATE representing the terrain profile between two points. -- @param #COORDINATE self -- @param Destination #COORDINATE Ending coordinate of the profile. -- @return #table #COORDINATE table of the profile