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:
authorHimanshi Kalra <calra>2021-08-24 10:52:01 +0300
committerHimanshi Kalra <himanshikalra98@gmail.com>2021-08-24 10:57:36 +0300
commit30d3dd4de160cbebfd1143d188f937d170be50a6 (patch)
treef3ab290d9a927bf5553a9c7b69066b9faeabd716 /tests/python
parent983280b01491883982df6c599da24767ea2e6248 (diff)
Added more Geometry Node tests
* Attributes * Utilities * Volume Test folder located in `lib\tests\modeling\geometry_nodes` It contains around 34 new tests. * attribute clamp + other attribute nodes * Curve Primitive nodes * Mesh Primitive nodes * delete geometry * convex hull * subdivision surface * boolean intersect * boolean diff * volume to mesh Reviewed By: zazizizou, JacquesLucke Differential Revision: https://developer.blender.org/D12250
Diffstat (limited to 'tests/python')
-rw-r--r--tests/python/CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/python/CMakeLists.txt b/tests/python/CMakeLists.txt
index 0f9665f0a95..79632e49c1f 100644
--- a/tests/python/CMakeLists.txt
+++ b/tests/python/CMakeLists.txt
@@ -741,10 +741,17 @@ if(WITH_COMPOSITOR)
endif()
set(geo_node_tests
+ attributes
+ curve_primitives
curves
geometry
+ mesh_primitives
mesh
points
+ utilities
+ vector
+ volume
+
)
foreach(geo_node_test ${geo_node_tests})