Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / FastPointCloud Class / FastPointCloud Constructor / FastPointCloud Constructor(Single[],Byte[],Single)
The point array defined as XYZ tuples
The color array defined as RGB tuples, RGBA tuples or as modulation factors (see ColorArray documentation for details)
Point size (which is assigned to the LineWeight property)

In This Topic
    FastPointCloud Constructor(Single[],Byte[],Single)
    In This Topic
    Point array and color array constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal pointArray() As Single, _
       ByVal rgbArray() As Byte, _
       ByVal pointSize As Single _
    )
    public FastPointCloud( 
       float[] pointArray,
       byte[] rgbArray,
       float pointSize
    )

    Parameters

    pointArray
    The point array defined as XYZ tuples
    rgbArray
    The color array defined as RGB tuples, RGBA tuples or as modulation factors (see ColorArray documentation for details)
    pointSize
    Point size (which is assigned to the LineWeight property)
    See Also