From 46ac3448e3c33f22a1651320efd6c794b2cca5a6 Mon Sep 17 00:00:00 2001 From: austin Date: Thu, 12 Dec 2024 16:17:45 -0500 Subject: [PATCH] rename function because ghost cells sounds cooler --- src/main/c/src/fluid/sim/grid2/utilities.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/c/src/fluid/sim/grid2/utilities.c b/src/main/c/src/fluid/sim/grid2/utilities.c index 5cdb4f65..e4e6bf1d 100644 --- a/src/main/c/src/fluid/sim/grid2/utilities.c +++ b/src/main/c/src/fluid/sim/grid2/utilities.c @@ -196,7 +196,7 @@ void fluid_grid2_set_bounds_continuity( /** * Sets the bounds to the neighbor's value */ -void fluid_grid2_set_bounds_neighbor( +void fluid_grid2_set_bounds_ghost_cell( Environment * environment, int sourceType, float * target @@ -342,7 +342,7 @@ LIBRARY_API void fluid_grid2_set_bounds( case BOUND_SET_VECTOR_V: case BOUND_SET_VECTOR_W: case BOUND_SET_DENSITY: { - fluid_grid2_set_bounds_neighbor(environment,vector_dir,target); + fluid_grid2_set_bounds_ghost_cell(environment,vector_dir,target); } break; } }