Files
BlenderSharp/BlendFile/DNA/CurveMapping.cs
2025-01-22 20:24:55 +01:00

60 lines
2.3 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;
public struct CurveMapping {
[DNAFieldAttribute(0, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(1, "int", "cur", 4)]
public int cur;
[DNAFieldAttribute(2, "int", "preset", 4)]
public int preset;
[DNAFieldAttribute(3, "int", "changed_timestamp", 4)]
public int changed_timestamp;
[DNAFieldAttribute(4, "rctf", "curr", 16)]
public rctf curr;
[DNAFieldAttribute(5, "rctf", "clipr", 16)]
public rctf clipr;
[DNAFieldAttribute(6, "CurveMap", "cm[4]", 80)]
public CurveMap[] cm = new CurveMap[4];
[DNAFieldAttribute(7, "float", "black[3]", 4)]
public float[] black = new System.Single[3];
[DNAFieldAttribute(8, "float", "white[3]", 4)]
public float[] white = new System.Single[3];
[DNAFieldAttribute(9, "float", "bwmul[3]", 4)]
public float[] bwmul = new System.Single[3];
[DNAFieldAttribute(10, "float", "sample[3]", 4)]
public float[] sample = new System.Single[3];
[DNAFieldAttribute(11, "short", "tone", 2)]
public short tone;
[DNAFieldAttribute(12, "char", "_pad[6]", 1)]
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;
}
}
}