Changeset 504
- Timestamp:
- 02/12/08 19:05:28 (11 months ago)
- Files:
-
- branches/morph-targets/libx42.net/Model.cpp (modified) (2 diffs)
- branches/morph-targets/libx42.net/Model.h (modified) (3 diffs)
- branches/morph-targets/libx42.net/MorphTarget.cpp (added)
- branches/morph-targets/libx42.net/MorphTarget.h (added)
- branches/morph-targets/libx42.net/libx42.net.vcproj (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/morph-targets/libx42.net/Model.cpp
r476 r504 38 38 #include "IndexCollection.h" 39 39 #include "VertexData.h" 40 #include "MorphTarget.h" 40 41 41 42 using namespace System; … … 140 141 infs = gcnew InfluenceCollection( this ); 141 142 tags = gcnew TagCollection( this ); 143 morphDeltas = gcnew MorphDeltaCollection( this ); 142 144 groups = gcnew GroupCollection( this, 0, m->header.numGroups ); 143 145 lods = gcnew LodCollection( this ); branches/morph-targets/libx42.net/Model.h
r476 r504 51 51 ref class AnimationBuffer; 52 52 ref class AnimationData; 53 ref class MorphDeltaCollection; 53 54 54 55 public value struct Sphere … … 175 176 { 176 177 IndexCollection^ get( void ) { return indices; } 178 } 179 180 property MorphDeltaCollection^ MorphDeltas 181 { 182 MorphDeltaCollection^ get( void ) { return morphDeltas; } 177 183 } 178 184 … … 247 253 LodCollection ^lods; 248 254 IndexCollection ^indices; 255 MorphDeltaCollection ^morphDeltas; 249 256 250 257 VertexData ^verts; branches/morph-targets/libx42.net/libx42.net.vcproj
r462 r504 289 289 </File> 290 290 <File 291 RelativePath=".\MorphTarget.cpp" 292 > 293 </File> 294 <File 295 RelativePath=".\MorphTarget.h" 296 > 297 </File> 298 <File 291 299 RelativePath=".\Tag.cpp" 292 300 >
