source: OniSplit/Dae/TransformMatrix.cs@ 1119

Last change on this file since 1119 was 1114, checked in by iritscen, 5 years ago

Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.

File size: 598 bytes
Line 
1using System;
2
3namespace Oni.Dae
4{
5 internal class TransformMatrix : Transform
6 {
7 public TransformMatrix()
8 : base(16)
9 {
10 }
11
12 public Matrix Matrix
13 {
14 get { return new Matrix(Values); }
15 set { value.CopyTo(Values); }
16 }
17
18 public override Matrix ToMatrix() => Matrix;
19 public override int ValueNameToValueIndex(string name) => -1;
20
21 public override string ValueIndexToValueName(int index)
22 {
23 throw new NotImplementedException();
24 }
25 }
26}
Note: See TracBrowser for help on using the repository browser.