Files
BlenderSharp/BlendFile/DNA/CurveMapping.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

46 lines
1.6 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 {
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;
}
}
}