Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,20 +11,34 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct Histogram {
[DNAFieldAttribute(0, "int", "channels", 4)]
public int channels;
[DNAFieldAttribute(1, "int", "x_resolution", 4)]
public int x_resolution;
[DNAFieldAttribute(2, "float", "data_luma[256]", 4)]
public float[] data_luma = new System.Single[256];
[DNAFieldAttribute(3, "float", "data_r[256]", 4)]
public float[] data_r = new System.Single[256];
[DNAFieldAttribute(4, "float", "data_g[256]", 4)]
public float[] data_g = new System.Single[256];
[DNAFieldAttribute(5, "float", "data_b[256]", 4)]
public float[] data_b = new System.Single[256];
[DNAFieldAttribute(6, "float", "data_a[256]", 4)]
public float[] data_a = new System.Single[256];
[DNAFieldAttribute(7, "float", "xmax", 4)]
public float xmax;
[DNAFieldAttribute(8, "float", "ymax", 4)]
public float ymax;
[DNAFieldAttribute(9, "short", "mode", 2)]
public short mode;
[DNAFieldAttribute(10, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(11, "int", "height", 4)]
public int height;
[DNAFieldAttribute(12, "float", "co[2][2]", 4)]
public float[,] co = new System.Single[2,2];
public Histogram(int channels, int x_resolution, float[] data_luma, float[] data_r, float[] data_g, float[] data_b, float[] data_a, float xmax, float ymax, short mode, short flag, int height, float[,] co) {
this.channels = channels;