Share

Intersect

C++

enum Intersect {
  kOnBothOperands = 0,
  kExtendThis = 1,
  kExtendArg = 2,
  kExtendBoth = 3
};

File

acdb.h

Description

The header file acdbabb.h contains const definitions for the Intersect 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?