GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
#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_set_null_tile_type (RASTER3D_Map *map, void *tile, int type) |
Assumes that tile is a tile with the same dimensions as the tiles of map. Fills tile with NULL-values of type. More... | |
void | Rast3d_set_null_tile (RASTER3D_Map *map, void *tile) |
Is equivalent to Rast3d_set_null_tile_type (map, tile, Rast3d_file_type_map (map)). More... | |
void Rast3d_set_null_tile | ( | RASTER3D_Map * | map, |
void * | tile | ||
) |
Is equivalent to Rast3d_set_null_tile_type (map, tile, Rast3d_file_type_map (map)).
map | |
tile |
Definition at line 41 of file tilenull.c.
References Rast3d_set_null_tile_type(), and RASTER3D_Map::typeIntern.
void Rast3d_set_null_tile_type | ( | RASTER3D_Map * | map, |
void * | tile, | ||
int | type | ||
) |
Assumes that tile is a tile with the same dimensions as the tiles of map. Fills tile with NULL-values of type.
map | |
tile | |
type |
Definition at line 23 of file tilenull.c.
Referenced by Rast3d_read_tile(), and Rast3d_set_null_tile().