Files
BlenderSharp/BlendFile/DNA/rctf.cs

40 lines
1.2 KiB
C#

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