GRASS GIS 8 Programmer's Manual
8.5.0dev(2024)-847944e18e
|
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include "raster3d_intern.h"
Go to the source code of this file.
Functions | |
void * | Rast3d_alloc_tiles_type (RASTER3D_Map *map, int nofTiles, int type) |
Allocates a vector of nofTiles tiles with the same dimensions as the tiles of map and large enough to store cell-values of type. More... | |
void * | Rast3d_alloc_tiles (RASTER3D_Map *map, int nofTiles) |
Is equivalent to Rast3d_alloc_tiles_type (map, nofTiles, Rast3d_file_type_map (map)). More... | |
void | Rast3d_free_tiles (void *tiles) |
Is equivalent to Rast3d_free (tiles); More... | |
void* Rast3d_alloc_tiles | ( | RASTER3D_Map * | map, |
int | nofTiles | ||
) |
Is equivalent to Rast3d_alloc_tiles_type (map, nofTiles, Rast3d_file_type_map (map)).
map | |
nofTiles |
Definition at line 49 of file tilealloc.c.
References NULL, Rast3d_alloc_tiles_type(), Rast3d_error(), and RASTER3D_Map::typeIntern.
void* Rast3d_alloc_tiles_type | ( | RASTER3D_Map * | map, |
int | nofTiles, | ||
int | type | ||
) |
Allocates a vector of nofTiles tiles with the same dimensions as the tiles of map and large enough to store cell-values of type.
map | |
nofTiles | |
type |
Definition at line 23 of file tilealloc.c.
Referenced by Rast3d_alloc_tiles().
void Rast3d_free_tiles | ( | void * | tiles | ) |
Is equivalent to Rast3d_free (tiles);
tiles |
Definition at line 73 of file tilealloc.c.
References Rast3d_free().