Share

CoordSystem

C++

enum CoordSystem {
  kWorldCS = 0,
  kUserCS = 1,
  kCurDisplayCS = 2,
  kPaperDisplayCS = 3,
  kEntityCS = 4
};

File

acdb.h

Description

The header file acdbabb.h contains const definitions for the CoordSystem values so that they can be used without the "AcDb::" scope resolution qualifier. This should only be used when you are certain there will be no name conflicts.

Was this information helpful?