libtcod experiments. Following feature branch API

This commit is contained in:
John McCardle 2026-01-23 20:48:46 -05:00
commit f30e5bb8a1
2 changed files with 31 additions and 197 deletions

View file

@ -57,9 +57,8 @@ public:
// Correct convolution methods (using new libtcod functions)
static PyObject* sparse_kernel(PyHeightMapObject* self, PyObject* args, PyObject* kwds);
static PyObject* sparse_kernel_from(PyHeightMapObject* self, PyObject* args, PyObject* kwds);
static PyObject* kernel3(PyHeightMapObject* self, PyObject* args, PyObject* kwds);
static PyObject* kernel3_from(PyHeightMapObject* self, PyObject* args, PyObject* kwds);
static PyObject* gradients(PyHeightMapObject* self, PyObject* args, PyObject* kwds);
// NOTE: gradients waiting for jmccardle:feature/heightmap-gradients to be merged into libtcod:main
// static PyObject* gradients(PyHeightMapObject* self, PyObject* args, PyObject* kwds);
// Subscript support for hmap[x, y] syntax
static PyObject* subscript(PyHeightMapObject* self, PyObject* key);