Files
BlenderSharp/BlendFile/DNA/Scopes.cs
2025-02-19 18:48:50 +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(0, "int", "ok", "int", 4, false)]
public int ok;
[DNAFieldAttribute(1, "int", "sample_full", "int", 4, false)]
public int sample_full;
[DNAFieldAttribute(2, "int", "sample_lines", "int", 4, false)]
public int sample_lines;
[DNAFieldAttribute(3, "int", "wavefrm_mode", "int", 4, false)]
public int wavefrm_mode;
[DNAFieldAttribute(4, "int", "vecscope_mode", "int", 4, false)]
public int vecscope_mode;
[DNAFieldAttribute(5, "int", "wavefrm_height", "int", 4, false)]
public int wavefrm_height;
[DNAFieldAttribute(6, "int", "vecscope_height", "int", 4, false)]
public int vecscope_height;
[DNAFieldAttribute(7, "int", "waveform_tot", "int", 4, false)]
public int waveform_tot;
[DNAFieldAttribute(8, "float", "accuracy", "float", 4, false)]
public float accuracy;
[DNAFieldAttribute(9, "float", "wavefrm_alpha", "float", 4, false)]
public float wavefrm_alpha;
[DNAFieldAttribute(10, "float", "wavefrm_yfac", "float", 4, false)]
public float wavefrm_yfac;
[DNAFieldAttribute(11, "float", "vecscope_alpha", "float", 4, false)]
public float vecscope_alpha;
[DNAFieldAttribute(12, "float", "minmax[3][2]", "System.Single[,]", 24, false)]
public float[,] minmax = new System.Single[3,2];
[DNAFieldAttribute(13, "Histogram", "hist", "Histogram", 5160, false)]
public Histogram hist;
[DNAFieldAttribute(14, "float", "*waveform_1", "float", 8, true)]
public float ptr_waveform_1;
[DNAFieldAttribute(15, "float", "*waveform_2", "float", 8, true)]
public float ptr_waveform_2;
[DNAFieldAttribute(16, "float", "*waveform_3", "float", 8, true)]
public float ptr_waveform_3;
[DNAFieldAttribute(17, "float", "*vecscope", "float", 8, true)]
public float ptr_vecscope;
[DNAFieldAttribute(18, "float", "*vecscope_rgb", "float", 8, true)]
public float ptr_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.ptr_waveform_1 = default;
this.ptr_waveform_2 = default;
this.ptr_waveform_3 = default;
this.ptr_vecscope = default;
this.ptr_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 ptr_waveform_1,
float ptr_waveform_2,
float ptr_waveform_3,
float ptr_vecscope,
float ptr_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.ptr_waveform_1 = ptr_waveform_1;
this.ptr_waveform_2 = ptr_waveform_2;
this.ptr_waveform_3 = ptr_waveform_3;
this.ptr_vecscope = ptr_vecscope;
this.ptr_vecscope_rgb = ptr_vecscope_rgb;
}
}
}