ENTITY colour_rgb

(* SCHEMA associative_draughting; *)
  ENTITY colour_rgb
    SUBTYPE OF (colour_specification);
      red   : REAL;
      green : REAL;
      blue  : REAL;
    WHERE
      wr1: (0 <= red) AND (red <= 1);
      wr2: (0 <= green) AND (green <= 1);
      wr3: (0 <= blue) AND (blue <= 1);
  END_ENTITY; -- colour_rgb

Explicit Attributes

Entity colour_rgb has the following local and inherited explicit attributes:
AttributeTypeDefined By
 namelabel (STRING)colour_specification
 redREALcolour_rgb
 greenREALcolour_rgb
 blueREALcolour_rgb

Derived Attributes

    No derived attributes

Inverse Attributes

    No Inverse Attributes

Supertypes

Entity colour_rgb inherits from the following supertypes:
  colour
    colour_specification

Subtypes

    No subtypes

Referenced By

Entity colour_rgb and its supertypes are referenced by the following definitions:
DefinitionTypeReferenced Entity
 colour_rgb_instantiation RULE colour_rgb
 curve_style ENTITY colour
 fill_area_style_colour ENTITY colour
 symbol_colour ENTITY colour
 text_style_for_defined_font ENTITY colour


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:14:12-04:00