Autodesk.AutoCAD.BoundaryRepresentation Namespace > LoopType Enumeration
Autodesk.AutoCAD.BoundaryRepresentation.LoopType Enumeration
Description

The LoopType enum classifies a loop as interior, exterior, and so on.

Visual Basic
Public Enum LoopType
  LoopUnclassified
  LoopExterior
  LoopInterior
  LoopWinding
End Enum
C#
public enum LoopType {
  LoopUnclassified,
  LoopExterior,
  LoopInterior,
  LoopWinding
}
Members
Members 
Description 
LoopUnclassified 
Loop type cannot be determined at this time, or is ambiguous (such as for loops embedded in spherical, toroidal or periodic nurb surfaces). 
LoopExterior 
Loop is on peripheral boundary (there is exactly one, unless the loop is on a conic surface, in which case there are winding loops instead). 
LoopInterior 
Loop is a hole in the interior of a face (there may be more than one interior loop per surface). 
LoopWinding 
Loop is winding on a conic surface (there is one winding loop for each non-degenerate base). 
   Comments?