Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/softbody/src/sdfgen/makelevelset3.h')
-rw-r--r--extern/softbody/src/sdfgen/makelevelset3.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/extern/softbody/src/sdfgen/makelevelset3.h b/extern/softbody/src/sdfgen/makelevelset3.h
deleted file mode 100644
index efc3a67da7b..00000000000
--- a/extern/softbody/src/sdfgen/makelevelset3.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef MAKELEVELSET3_H
-#define MAKELEVELSET3_H
-
-#include "array3.h"
-#include "vec.h"
-
-namespace sdfgen {
-
-// tri is a list of triangles in the mesh, and x is the positions of the vertices
-// absolute distances will be nearly correct for triangle soup, but a closed mesh is
-// needed for accurate signs. Distances for all grid cells within exact_band cells of
-// a triangle should be exact; further away a distance is calculated but it might not
-// be to the closest triangle - just one nearby.
-void make_level_set3(const std::vector<Vec3ui> &tri, const std::vector<Vec3f> &x,
- const Vec3f &origin, float dx, int nx, int ny, int nz,
- Array3f &phi, const int exact_band=1);
-
-}
-
-#endif