Share

AcEdViewCubePart Enumeration

C++

enum AcEdViewCubePart {
  FACE_FRONT = 0,
  FACE_BACK,
  FACE_BOTTOM,
  FACE_TOP,
  FACE_LEFT,
  FACE_RIGHT,
  EDGE_FRONT_BOTTOM,
  EDGE_FRONT_TOP,
  EDGE_BACK_BOTTOM,
  EDGE_BACK_TOP,
  EDGE_LEFT_BOTTOM,
  EDGE_RIGHT_BOTTOM,
  EDGE_LEFT_TOP,
  EDGE_RIGHT_TOP,
  EDGE_FRONT_LEFT,
  EDGE_BACK_LEFT,
  EDGE_FRONT_RIGHT,
  EDGE_BACK_RIGHT,
  CORNER_FRONT_LEFT_BOTTOM,
  CORNER_FRONT_RIGHT_BOTTOM,
  CORNER_FRONT_LEFT_TOP,
  CORNER_FRONT_RIGHT_TOP,
  CORNER_BACK_LEFT_BOTTOM,
  CORNER_BACK_RIGHT_BOTTOM,
  CORNER_BACK_LEFT_TOP,
  CORNER_BACK_RIGHT_TOP,
  ARROW_FRONT,
  ARROW_BACK,
  ARROW_BOTTOM,
  ARROW_TOP,
  ARROW_LEFT,
  ARROW_RIGHT,
  BUTTON_ROTATE_CCW,
  BUTTON_ROTATE_CW,
  BUTTON_HOME,
  BUTTON_LOCK,
  BUTTON_MENU,
  COMPASS_EAST,
  COMPASS_WEST,
  COMPASS_SOUTH,
  COMPASS_NORTH,
  COMPASS_RING
};

File

AcEdViewCube.h

Description

This enumeration indicates the view cube part which is under operation.

  • FACE_*: Indicates the specified face under operation
  • EDGE_*: Indicates the specified edge under operation
  • CORNER_*: Indicates the specified corner under operation
  • ARROW_*: Indicates the specified arrow button around the cube
  • BUTTON_*: Indicates the other button around the cube
  • COMPASS_*: Indicates the compass button

Was this information helpful?