From 5eec6733ed78cd551d07ae788efcb6ee5b606dd3 Mon Sep 17 00:00:00 2001
From: Shon Ferguson <shonferg@users.sourceforge.net>
Date: Wed, 20 Sep 2006 04:13:08 +0000
Subject: [PATCH] Added option to ComplexShape::Split to request the generation
 of tangent space.

---
 include/ComplexShape.h | 2 +-
 src/ComplexShape.cpp   | 7 ++++++-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/include/ComplexShape.h b/include/ComplexShape.h
index dafc4b8f..d6fd883a 100644
--- a/include/ComplexShape.h
+++ b/include/ComplexShape.h
@@ -64,7 +64,7 @@ public:
 		vector<TexCoord> texCoords;
 	};
 
-	Ref<NiAVObject> Split( Ref<NiNode> & parent, Matrix44 & transform, int max_bones_per_partition = 4, bool stripify = false ) const;
+	Ref<NiAVObject> Split( Ref<NiNode> & parent, Matrix44 & transform, int max_bones_per_partition = 4, bool stripify = false, bool tangent_space = false ) const;
 	void Merge( const Ref<NiAVObject> & root );
 	void Clear();
 
diff --git a/src/ComplexShape.cpp b/src/ComplexShape.cpp
index eaff4b44..439bbbbb 100644
--- a/src/ComplexShape.cpp
+++ b/src/ComplexShape.cpp
@@ -606,7 +606,7 @@ void ComplexShape::Merge( const Ref<NiAVObject> & root ) {
 //	}
 //}
 
-Ref<NiAVObject> ComplexShape::Split( Ref<NiNode> & parent, Matrix44 & transform, int max_bones_per_partition, bool stripify ) const {
+Ref<NiAVObject> ComplexShape::Split( Ref<NiNode> & parent, Matrix44 & transform, int max_bones_per_partition, bool stripify, bool tangent_space ) const {
 
 	//Make sure parent is not NULL
 	if ( parent == NULL ) {
@@ -881,6 +881,11 @@ Ref<NiAVObject> ComplexShape::Split( Ref<NiNode> & parent, Matrix44 & transform,
 			//	}
 			//}
 		}
+
+		//If tangent space was requested, generate it
+		if ( tangent_space ) {
+			shapes[shape_num]->UpdateTangentSpace();
+		}
 		
 		//Next Shape
 	}
-- 
GitLab