ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectGeometryType Enumeration




In This Topic
    ImGearVectGeometryType Enumeration
    In This Topic
    Specifies the type of geometry primitives.
    Syntax
    'Declaration
     
    Public Enum ImGearVectGeometryType 
       Inherits System.Enum
    'Usage
     
    Dim instance As ImGearVectGeometryType
    public enum ImGearVectGeometryType : System.Enum 
    __value public enum ImGearVectGeometryType : public System.Enum 
    public enum class ImGearVectGeometryType : public System.Enum 
    Members
    MemberValueDescription
    LINE_LOOP2Vertices define a connected group of line segments from the first vertex to the last.
    LINE_STRIP3Vertices define a connected group of line segments from the first vertex to the last, then back to the first.
    LINES1Each pair of vertices is an independent line segment.
    POINTS0Each vertex is a single point.
    POLYGON9Vertices define a single, convex polygon.
    QUAD_STRIP8Vertices define a connected group of quadrilaterals. One quadrilateral is defined for each pair of vertices presented after the first pair. Vertices 2n 1, 2n, 2n + 2, and 2n + 1 define quadrilateral n. N quadrilaterals are drawn.
    QUADS7Each group of four vertices is an independent quadrilateral.
    TRIANGLE_FAN6Vertices define a connected group of triangles. One triangle is defined for each vertex presented after the first two vertices. Vertices 1, n + 1, and n + 2 define triangle n. N 2 triangles are drawn.
    TRIANGLE_STRIP5Vertices define a connected group of triangles. One triangle is defined for each vertex presented after the first two vertices. For odd n, vertices n, n + 1, and n + 2 define triangle n. For even n, vertices n + 1, n, and n + 2 define triangle n. N 2 triangles are drawn.
    TRIANGLES4Each triplet of vertices is an independent triangle.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ImageGear.Vector.ImGearVectGeometryType

    See Also