Update Point.lua

This commit is contained in:
Frank 2023-10-02 17:02:21 +02:00
parent d2e2c51275
commit db53f427e3

View File

@ -511,6 +511,17 @@ function NAVPOINT:SetAltMandatory(Altitude)
return self
end
--- Set minimum speed.
-- @param #NAVPOINT self
-- @param #number Speed Min speed in knots.
-- @return #NAVPOINT self
function NAVPOINT:SetSpeedMin(Speed)
self.speedMin=Altitude
return self
end
--- Set whether this fix is compulsory.
-- @param #NAVPOINT self
-- @param #boolean Compulsory If `true`, this is a compusory fix. If `false` or nil, it is non-compulsory.