Share

AcGiVisualStyleProperties::EdgeStyles Enumeration

C++

enum EdgeStyles {
  kNoEdgeStyle = 0,
  kVisibleFlag = 1,
  kSilhouetteFlag = 2,
  kObscuredFlag = 4,
  kIntersectionFlag = 8
};

File

acgivisualstyle.h

Members

Members Description
kNoEdgeStyleNo styles will be applied to the edges.
kVisibleFlagVisible edges will be displayed.
kSilhouetteFlagSilhouette edges will be displayed. A silhouette edge is an edge connecting a back facing polygon with a front facing polygon.
kObscuredFlagObscured edges will be displayed. An obscured edge is that which would not be normally be visible when in a shaded view.
kIntersectionFlagIntersection edges will be displayed. An intersection edges is that which is inferred from portions of different intersecting objects.

Description

Bitfield which describes the combination of edge styles to display.

Was this information helpful?