source: OniSplit/Metadata/MetaMatrix4x3.cs@ 1114

Last change on this file since 1114 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: 649 bytes
Line 
1namespace Oni.Metadata
2{
3 internal class MetaMatrix4x3 : MetaStruct
4 {
5 internal MetaMatrix4x3()
6 : base("Matrix4x3",
7 new Field(Float, "M11"), new Field(Float, "M12"), new Field(Float, "M13"),
8 new Field(Float, "M21"), new Field(Float, "M22"), new Field(Float, "M23"),
9 new Field(Float, "M31"), new Field(Float, "M32"), new Field(Float, "M33"),
10 new Field(Float, "M41"), new Field(Float, "M42"), new Field(Float, "M43"))
11 {
12 }
13
14 public override void Accept(IMetaTypeVisitor visitor) => visitor.VisitMatrix4x3(this);
15 }
16}
Note: See TracBrowser for help on using the repository browser.