XML: NOT Operator !: Difference between revisions
From FSDeveloper Wiki
Jump to navigationJump to search
| Line 1: | Line 1: | ||
== NOT Operator ! == | == NOT Operator ! == | ||
''Explanation of the '''!''' Operator courtesy Tom Aguilo:'' | |||
Explanation of the ! Operator courtesy Tom Aguilo: | |||
The NOT Operator, ! (negation sign) acts like a toggle operator. It works by extracting the last value on the stack and converting it: | The NOT Operator, ! (negation sign) acts like a toggle operator. It works by extracting the last value on the stack and converting it: | ||
| Line 8: | Line 7: | ||
- to 0 when it is >= 1 or <= -1 (equivalent to logical FALSE, or "zero" ) | - to 0 when it is >= 1 or <= -1 (equivalent to logical FALSE, or "zero" ) | ||
- to 1 when it is > -1 and < 1 (equivalent to logical TRUE, or "not zero" ) | - to 1 when it is > -1 and < 1 (equivalent to logical TRUE, or "not zero" ) | ||
Reference [http://fsdeveloper.com/forum/threads/landing-variable.439017/#post-761124 | |||
/ Tom Aguilo]'' | |||
[[Category:Aircraft Design]] | |||
[[Category:Panel and Gauge Design]] | |||
Revision as of 10:55, 26 December 2016
NOT Operator !
Explanation of the ! Operator courtesy Tom Aguilo:
The NOT Operator, ! (negation sign) acts like a toggle operator. It works by extracting the last value on the stack and converting it:
- to 0 when it is >= 1 or <= -1 (equivalent to logical FALSE, or "zero" ) - to 1 when it is > -1 and < 1 (equivalent to logical TRUE, or "not zero" )
Reference [http://fsdeveloper.com/forum/threads/landing-variable.439017/#post-761124 / Tom Aguilo]