| 1 |
namespace 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 |
} |