Vector.Gpu.ViewPort.ViewPort C# (CSharp) Method

ViewPort() public method

public ViewPort ( int x, int y, int width, int height, int minZ, int maxZ ) : System
x int
y int
width int
height int
minZ int
maxZ int
return System
        public ViewPort(int x, int y, int width, int height, int minZ, int maxZ)
        {
            this.x      = x;
            this.y      = y;
            this.width  = width;
            this.height = height;
            this.minZ   = minZ;
            this.maxZ   = maxZ;
        }

Same methods

ViewPort::ViewPort ( int x, int y, int width, int height ) : System