21 lines
729 B
C#
21 lines
729 B
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public struct bGPgrid {
|
|
public float[] color = new System.Single[3];
|
|
public float[] scale = new System.Single[2];
|
|
public float[] offset = new System.Single[2];
|
|
public char[] _pad1 = new System.Char[4];
|
|
public int lines;
|
|
public char[] _pad = new System.Char[4];
|
|
public bGPgrid(float[] color, float[] scale, float[] offset, char[] _pad1, int lines, char[] _pad) {
|
|
this.color = color;
|
|
this.scale = scale;
|
|
this.offset = offset;
|
|
this._pad1 = _pad1;
|
|
this.lines = lines;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|