Files
BlenderSharp/BlendFile/DNA/Scopes.cs
2025-03-11 19:12:04 +01:00

119 lines
4.9 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(167, "Scopes", 5272)]
public class Scopes {
[DNAFieldAttribute(4, "int", 0, "ok", "int", false, 0)]
public int ok;
[DNAFieldAttribute(4, "int", 1, "sample_full", "int", false, 4)]
public int sample_full;
[DNAFieldAttribute(4, "int", 2, "sample_lines", "int", false, 8)]
public int sample_lines;
[DNAFieldAttribute(4, "int", 3, "wavefrm_mode", "int", false, 12)]
public int wavefrm_mode;
[DNAFieldAttribute(4, "int", 4, "vecscope_mode", "int", false, 16)]
public int vecscope_mode;
[DNAFieldAttribute(4, "int", 5, "wavefrm_height", "int", false, 20)]
public int wavefrm_height;
[DNAFieldAttribute(4, "int", 6, "vecscope_height", "int", false, 24)]
public int vecscope_height;
[DNAFieldAttribute(4, "int", 7, "waveform_tot", "int", false, 28)]
public int waveform_tot;
[DNAFieldAttribute(4, "float", 8, "accuracy", "float", false, 32)]
public float accuracy;
[DNAFieldAttribute(4, "float", 9, "wavefrm_alpha", "float", false, 36)]
public float wavefrm_alpha;
[DNAFieldAttribute(4, "float", 10, "wavefrm_yfac", "float", false, 40)]
public float wavefrm_yfac;
[DNAFieldAttribute(4, "float", 11, "vecscope_alpha", "float", false, 44)]
public float vecscope_alpha;
[DNAArrayAttribute(24, "float", 12, "minmax[3][2]", "System.Single[,]", 5, 48)]
public float[,] minmax = new System.Single[3,2];
[DNAFieldAttribute(5160, "Histogram", 13, "hist", "Histogram", false, 72)]
public Histogram hist;
[DNAFieldAttribute(8, "float", 14, "*waveform_1", "float", true, 5232)]
public float waveform_1;
[DNAFieldAttribute(8, "float", 15, "*waveform_2", "float", true, 5240)]
public float waveform_2;
[DNAFieldAttribute(8, "float", 16, "*waveform_3", "float", true, 5248)]
public float waveform_3;
[DNAFieldAttribute(8, "float", 17, "*vecscope", "float", true, 5256)]
public float vecscope;
[DNAFieldAttribute(8, "float", 18, "*vecscope_rgb", "float", true, 5264)]
public float vecscope_rgb;
public Scopes() {
this.ok = default;
this.sample_full = default;
this.sample_lines = default;
this.wavefrm_mode = default;
this.vecscope_mode = default;
this.wavefrm_height = default;
this.vecscope_height = default;
this.waveform_tot = default;
this.accuracy = default;
this.wavefrm_alpha = default;
this.wavefrm_yfac = default;
this.vecscope_alpha = default;
this.minmax = default;
this.hist = default;
this.waveform_1 = default;
this.waveform_2 = default;
this.waveform_3 = default;
this.vecscope = default;
this.vecscope_rgb = default;
}
public Scopes(
int ok,
int sample_full,
int sample_lines,
int wavefrm_mode,
int vecscope_mode,
int wavefrm_height,
int vecscope_height,
int waveform_tot,
float accuracy,
float wavefrm_alpha,
float wavefrm_yfac,
float vecscope_alpha,
float[,] minmax,
Histogram hist,
float waveform_1,
float waveform_2,
float waveform_3,
float vecscope,
float vecscope_rgb) {
this.ok = ok;
this.sample_full = sample_full;
this.sample_lines = sample_lines;
this.wavefrm_mode = wavefrm_mode;
this.vecscope_mode = vecscope_mode;
this.wavefrm_height = wavefrm_height;
this.vecscope_height = vecscope_height;
this.waveform_tot = waveform_tot;
this.accuracy = accuracy;
this.wavefrm_alpha = wavefrm_alpha;
this.wavefrm_yfac = wavefrm_yfac;
this.vecscope_alpha = vecscope_alpha;
this.minmax = minmax;
this.hist = hist;
this.waveform_1 = waveform_1;
this.waveform_2 = waveform_2;
this.waveform_3 = waveform_3;
this.vecscope = vecscope;
this.vecscope_rgb = vecscope_rgb;
}
}
}