Microsoft.Samples.Kinect.SkeletonBasics.Paddle.Paddle C# (CSharp) Method

Paddle() public method

public Paddle ( System.Windows.Media.Brush color, double x, double y, float w, float h ) : System
color System.Windows.Media.Brush
x double
y double
w float
h float
return System
        public Paddle(Brush color, double x, double y, float w, float h)
        {
            Color = color;
            this.x = x;
            this.y = y;
            this.h = h;
            this.w = w;
        }