HeightMap - kernel_transform (#198)

This commit is contained in:
John McCardle 2026-01-12 21:42:34 -05:00
commit 5a86602789
3 changed files with 432 additions and 0 deletions

View file

@ -53,6 +53,7 @@ public:
static PyObject* rain_erosion(PyHeightMapObject* self, PyObject* args, PyObject* kwds);
static PyObject* dig_bezier(PyHeightMapObject* self, PyObject* args, PyObject* kwds);
static PyObject* smooth(PyHeightMapObject* self, PyObject* args, PyObject* kwds);
static PyObject* kernel_transform(PyHeightMapObject* self, PyObject* args, PyObject* kwds);
// Subscript support for hmap[x, y] syntax
static PyObject* subscript(PyHeightMapObject* self, PyObject* key);