ChaosPro Home
Introduction
What's New
Palettes
Using Formulas
Layering in ChaosPro
Rendering
Fractal Parameter Windows
Windows
Menu
3D Transformations
Animations
Formula Compiler
Writing Formulas
Language Reference
Introduction
Basic Syntax
Datatypes
Constants
Variables
Expressions
Operators
Precedence
Arithmetic Operators
Assignment Operator
Comparison Operator
Logical Operators
!
&&
||
Functions
Control Structures
Compiler Directives
Functions
Interface to ChaosPro
Special Features, Notes...
Compatibility
Fractal Type Reference
Tutorials
Appendix
CHAOSPRO 4.0
Release 4.0
.

Operators - !

Operator :! - Logical NOT
Unary / binary: Unary
Prefix / infix: Prefix

Input data type

Output data type

bool bool

Notes:


This operator inverses the boolean value, i.e. !true ==> false and !false ==> true

Because its input and output data type is boolean this operator will mainly appear where boolean expressions must be specified, as in if-clauses.

Examples:


!true ==> false

!false ==> true

!a