//------------------------------------------------------------------------------ // // 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 BlendFile.CompatTypes; using System; namespace BlendFile.DNA { public struct CurveMapping { public int flag; public int cur; public int preset; public int changed_timestamp; public rctf curr; public rctf clipr; public CurveMap[] cm = new CurveMap[4]; public float[] black = new System.Single[3]; public float[] white = new System.Single[3]; public float[] bwmul = new System.Single[3]; public float[] sample = new System.Single[3]; public short tone; public char[] _pad = new System.Char[6]; public CurveMapping(int flag, int cur, int preset, int changed_timestamp, rctf curr, rctf clipr, CurveMap[] cm, float[] black, float[] white, float[] bwmul, float[] sample, short tone, char[] _pad) { this.flag = flag; this.cur = cur; this.preset = preset; this.changed_timestamp = changed_timestamp; this.curr = curr; this.clipr = clipr; this.cm = cm; this.black = black; this.white = white; this.bwmul = bwmul; this.sample = sample; this.tone = tone; this._pad = _pad; } } }