19 lines
540 B
C#
19 lines
540 B
C#
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; }
|
|
}
|
|
}
|