#ifndef BigCube_H #define BigCube_H /* Last edited on 2007-01-25 14:23:57 by stolfi */ /* Procedures that build arrays of cubical cells. */ #define BigCube_H_copyright \ "Copyright © 2000 Universidade Estadual de Campinas (UNICAMP)" #include #include #include #include FourPlaces_vec_t Make1DCubearray(uint order); /* Build one row of cubes with order "order". */ TwoPlaces_vec_t Make2DCubeArray(uint order); /* Build one bidimensional array of cubes of order: {order x order}. */ TwoPlaces_vec_t MakeBigCube(uint order); /* Build one tridimensional array of cubic cellulas. Return two arrays of places of order: {order x order}, not eliminated by gluing procedure of columns of cubes. */ void SetCubeProperties(TwoPlaces_vec_t *a, uint n, Topology_t *tp); /* Set the propiertes of a tridimensional array of cubic cells, such that it emphasis the elements of the external big cube. */ Place_t GlueBigCube(Place_t p, Place_t b, uint n); /* Make the glueing of two simples {bigcubes} around of one squared grid common wall. The {p} and their adjacentes on the same squared grid wall component is killed. */ TwoPlaces_vec_t BuildBigRawCube(uint order, bool_t original); /* Builds one tridimensional array of cubic cells with fixed geometry. if {original==TRUE} then the procedure emphasize the original elements on a cube. */ #define BigCube_H_author \ "C interface created by J. Stolfi, jan/2007." #endif