Sunset, sunrise, twilight calculations in LC?

Bob Sneidar bobsneidar at iotecdigital.com
Wed Aug 27 12:11:54 EDT 2014


Nicely done! I love this list!!

Bob S


On Aug 23, 2014, at 13:22 , Charles E Buchwald <charles at buchwald.ca<mailto:charles at buchwald.ca>> wrote:

function Floor pValue
 if pValue < 0 then return trunc(pValue) - 1 else return trunc(pValue)
end Floor

I know this is trivial, but here's a ceiling function, just to kind of fill out the thread:

function Ceiling pValue
 if pValue < 0 then return trunc(pValue) else return trunc(pValue) + 1
end Ceiling




More information about the use-livecode mailing list