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 'source/blender/editors/sculpt_paint/sculpt.cc')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.cc20
1 files changed, 20 insertions, 0 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.cc b/source/blender/editors/sculpt_paint/sculpt.cc
new file mode 100644
index 00000000000..adfe2a1c8b1
--- /dev/null
+++ b/source/blender/editors/sculpt_paint/sculpt.cc
@@ -0,0 +1,20 @@
+#if 0
+# include "sculpt.hh"
+
+typedef blender::sculpt::SculptImpl<BMVert *,
+ BMEdge *,
+ BMFace *,
+ blender::sculpt::BMeshBackend,
+ blender::sculpt::BMeshPBVH>
+ BMeshSculpt;
+
+BMeshSculpt *sculpt = new BMeshSculpt(NULL, NULL);
+
+void test_cxsculpt()
+{
+ float dir[3] = {1.0f, 2.0f, 3.0f};
+ float cent[3] = {0.0f, 0.0f, 0.0f};
+
+ sculpt->moveVerts(cent, 5.0f, dir);
+}
+#endif