Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/library/fsin.bas.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,11 @@ while num<0
num=num+360
end while

IF num>180 then quad=-1
IF num>180 then
quad=-1
num=num-180
ELSE quad=1
ELSE
quad=1
END IF

IF num>90 then num=180-num
Expand Down