//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(87, "rctf", 16)] public struct rctf { [DNAFieldAttribute(0, "float", "xmin", "float", 4, false)] public float xmin; [DNAFieldAttribute(1, "float", "xmax", "float", 4, false)] public float xmax; [DNAFieldAttribute(2, "float", "ymin", "float", 4, false)] public float ymin; [DNAFieldAttribute(3, "float", "ymax", "float", 4, false)] public float ymax; public rctf() { this.xmin = default; this.xmax = default; this.ymin = default; this.ymax = default; } public rctf(float xmin, float xmax, float ymin, float ymax) { this.xmin = xmin; this.xmax = xmax; this.ymin = ymin; this.ymax = ymax; } } }