ExampleWithGraphics.Vertex.Vertex C# (CSharp) Метод

Vertex() публичный Метод

Initializes a new instance of the Vertex class.
public Vertex ( double x, double y, System.Windows.Media.Brush fill = null ) : System.Windows
x double The x position.
y double The y position.
fill System.Windows.Media.Brush
Результат System.Windows
        public Vertex(double x, double y, Brush fill = null)
            : this(fill)
        {
            Position = new double[] { x, y };
        }

Same methods

Vertex::Vertex ( System.Windows.Media.Brush fill = null ) : System.Windows
Vertex::Vertex ( double x, double y, double z, bool isHull = false ) : System.Windows.Media