Overview Schemas Index

Colour_arm         


ENTITY User_defined_colour
          SUBTYPE OF (Colour);
          red : REAL;
          green : REAL;
          blue : REAL;
WHERE
          WR1: {0.0 <= red <= 1.0};
          WR2: {0.0 <= green <= 1.0};
          WR3: {0.0 <= blue <= 1.0};
END_ENTITY; -- User_defined_colour

Entity data types and their attributes

Colour
          name: STRING;
User_defined_colour
          red: REAL;
          green: REAL;
          blue: REAL;

Users: by entity attributes

Colour
          Curve_appearance.colour
          Light_source.colour
          Point_appearance.colour
          Solid_fill_area_style.fill_colour
          Surface_colour.assigned_colour
          Surface_style_rendering.assigned_colour
          Text_style.text_colour
User_defined_colour

Users: by defined types, not used by any entity attribute

User_defined_colour
          -

Global rules for this entity data type

          -