Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -41,6 +41,21 @@ namespace BlendFile.DNA {
public int height;
[DNAFieldAttribute(12, "float", "co[2][2]", 4)]
public float[,] co = new System.Single[2,2];
public Histogram() {
this.channels = default;
this.x_resolution = default;
this.data_luma = default;
this.data_r = default;
this.data_g = default;
this.data_b = default;
this.data_a = default;
this.xmax = default;
this.ymax = default;
this.mode = default;
this.flag = default;
this.height = default;
this.co = default;
}
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;
this.x_resolution = x_resolution;