Commit 2437404e authored by Vladimír Ulman's avatar Vladimír Ulman
Browse files

FIX: the clockwiseness of cell body triangles was opposite to the one of filopodia triangles.

parent 1ef27b24
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -338,8 +338,8 @@ int ActiveMesh::ImportVTK(const char *filename) //surface version
		//save v1,v2,v3 (TODO: if not already saved...)
		//make triangles use CW winding order
		ID.push_back(v1);
		ID.push_back(v3);
		ID.push_back(v2);
		ID.push_back(v3);
		norm.push_back(fictiveNormal);

		--itemCount;