Generated new code and added initial data handling
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user