Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / PointRGB Class / PointRGB Constructor / PointRGB Constructor(Double,Double,Double,Byte,Byte,Byte)
Point's X coordinate
Point's Y coordinate
Point's Z coordinate
Point's color red component
Point's color green component
Point's color blue component

In This Topic
    PointRGB Constructor(Double,Double,Double,Byte,Byte,Byte)
    In This Topic
    Individual color components constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal x As Double, _
       ByVal y As Double, _
       ByVal z As Double, _
       ByVal red As Byte, _
       ByVal green As Byte, _
       ByVal blue As Byte _
    )
    public PointRGB( 
       double x,
       double y,
       double z,
       byte red,
       byte green,
       byte blue
    )

    Parameters

    x
    Point's X coordinate
    y
    Point's Y coordinate
    z
    Point's Z coordinate
    red
    Point's color red component
    green
    Point's color green component
    blue
    Point's color blue component
    See Also