REAL

Definition

REAL [id]
{
  [Common flags]
  [MIN minval;]
  [MINEX;]
  [MAX maxval;]
  [MAXEX;]
  [MINSLIDER minval;]
  [MAXSLIDER maxval;]
  [STEP step;]
  [UNIT (descriptions) REAL | PERCENT | DEGREE | METER | TIME;]
}

Description

Represents Float values in a container. Rendered as a numerical edit field.

Flags

MIN minval;The minimum value.
MINEX;The minimum value itself is not allowed. (Strict inequality.)
MAX maxval;The maximum value.
MAXEX;The maximum value itself is not allowed. (Strict inequality.)
MINSLIDER minval;The minimum value for the slider.
MAXSLIDER maxval;The maximum value for the slider.
STEP step;The step for the edit field arrows.
UNIT REAL | PERCENT | DEGREE | METER | TIME;The display unit.

Example

REAL ANGLE { UNIT DEGREE; }
REAL NONZERO_DISTANCE { UNIT METER; MINEX; MIN 0.0; }
REAL
Float data.
Definition: c4d_customguidata.h:3
DEGREE
Degrees.
Definition: ge_prepass.h:1
MIN
Definition: ge_prepass.h:3
METER
Meter. Working unit.
Definition: ge_prepass.h:3
ANGLE
Definition: units.h:7

Further Reading