Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot Namespace / LinePattern Class / GetPatternVertices Method
The maximum number of pattern repetitions allowed between two vertices of a curve
The list of segments on which to compute the pattern
The line type scale
The computed points representing the lines of the pattern
The computed points representing the dots of the pattern

In This Topic
    GetPatternVertices Method
    In This Topic
    Computes the pattern from the given vertices and returns the lines and points that represent it.
    Syntax
    'Declaration
     
    Public Overridable Sub GetPatternVertices( _
       ByVal maxPatternRepetitions As Integer, _
       ByVal vertices() As Point3D, _
       ByVal scale As Single, _
       ByRef lines As List(Of Point3D), _
       ByRef points As List(Of Point3D) _
    ) 
    public virtual void GetPatternVertices( 
       int maxPatternRepetitions,
       Point3D[] vertices,
       float scale,
       out List<Point3D> lines,
       out List<Point3D> points
    )

    Parameters

    maxPatternRepetitions
    The maximum number of pattern repetitions allowed between two vertices of a curve
    vertices
    The list of segments on which to compute the pattern
    scale
    The line type scale
    lines
    The computed points representing the lines of the pattern
    points
    The computed points representing the dots of the pattern
    See Also