CCT.NUI.Core.Shape.Shape.Shape C# (CSharp) Method

Shape() public method

public Shape ( System.Point center, Volume volume, Contour contour, ConvexHull convexHull, IList points ) : System
center System.Point
volume Volume
contour Contour
convexHull ConvexHull
points IList
return System
        public Shape(Point center, Volume volume, Contour contour, ConvexHull convexHull, IList<Point> points)
        {
            this.center = center;
            this.volume = volume;
            this.contour = contour;
            this.convexHull = convexHull;
            this.points = points;
        }
Shape