port from perforce
This commit is contained in:
18
aiwaz/Backup/Aiwaz.Contracts/IBone.cs
Normal file
18
aiwaz/Backup/Aiwaz.Contracts/IBone.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.Collections.Generic;
|
||||
using SlimDX;
|
||||
namespace Aiwaz.Contracts
|
||||
{
|
||||
public interface IBone
|
||||
{
|
||||
Matrix GetTransformationAtTime(float time, Matrix rootTransformationMatrix);
|
||||
|
||||
Dictionary<int, IBone> BoneIndexList { get; }
|
||||
List<IBone> ChildBones { get; }
|
||||
int Index { get; }
|
||||
Matrix[] MatrixArray { get; }
|
||||
string Name { get; }
|
||||
Matrix PoseTransformation { get; }
|
||||
IBone Parent { get; set; }
|
||||
ITransformationAnimation TransformationAnimation { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user