Exemplo n.º 1
0
        public static BasicModel CreateGrid(Device device, float width, float depth, int xVerts, int yVerts)
        {
            var model = new BasicModel();

            model.CreateGridInternal(device, width, depth, xVerts, yVerts);
            return(model);
        }