Revision: | 1114 |
Committed: | Wed Jan 22 14:08:57 2020 UTC (5 years, 8 months ago) by iritscen |
File size: | 598 byte(s) |
Log Message: | Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years. |
# | Content |
---|---|
1 | using System; |
2 | |
3 | namespace 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 | } |