Share

AcGs

C++

struct AcGs {
  enum LinePattern {
    eSolid = 0,
    eDashed = 1,
    eDotted = 2,
    eDashDot = 3,
    eShortDash = 4,
    eMediumDash = 5,
    eLongDash = 6,
    eDoubleShortDash = 7,
    eDoubleMediumDash = 8,
    eDoubleLongDash = 9,
    eMediumLongDash = 10,
    eMediumDashShortDashShortDash = 11,
    eLongDashShortDash = 12,
    eLongDashDotDot = 13,
    eLongDashDot = 14,
    eMediumDashDotShortDashDot = 15,
    eSparseDot = 16,
    eDefaultLinePattern = eDotted
  };
};

File

acgs.h

Description

Was this information helpful?