12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/types.h>
- #include <unistd.h>
- #include "raster3d_intern.h"
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Allocates a vector of <em>nofTiles</em> tiles with the same dimensions
- * as the tiles of <em>map</em> and large enough to store cell-values of
- * <em>type</em>.
- *
- * \param map
- * \param nofTiles
- * \param type
- * \return void * : a pointer to the vector ... if successful,
- * NULL ... otherwise.
- */
- void *Rast3d_alloc_tiles_type(RASTER3D_Map * map, int nofTiles, int type)
- {
- void *tiles;
- tiles = Rast3d_malloc(map->tileSize * Rast3d_length(type) * nofTiles);
- if (tiles == NULL) {
- Rast3d_error("Rast3d_alloc_tiles_type: error in Rast3d_malloc");
- return NULL;
- }
- return tiles;
- }
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Is equivalent to Rast3d_alloc_tiles_type (map, nofTiles, Rast3d_file_type_map (map)).
- *
- * \param map
- * \param nofTiles
- * \return void *
- */
- void *Rast3d_alloc_tiles(RASTER3D_Map * map, int nofTiles)
- {
- void *tiles;
- tiles = Rast3d_alloc_tiles_type(map, nofTiles, map->typeIntern);
- if (tiles == NULL) {
- Rast3d_error("Rast3d_alloc_tiles: error in Rast3d_alloc_tiles_type");
- return NULL;
- }
- return tiles;
- }
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Is equivalent to <tt>Rast3d_free (tiles);</tt>
- *
- * \param tiles
- * \return void
- */
- void Rast3d_free_tiles(void *tiles)
- {
- Rast3d_free(tiles);
- }
|