Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,53 +15,53 @@ namespace BlendFile.DNA {
[DNAClassAttribute(207, "Nurb", 88)]
public class Nurb {
[DNAFieldAttribute(0, "Nurb", "*next", "Nurb", 8, true, 0)]
public Nurb ptr_next;
[DNAFieldAttribute(1, "Nurb", "*prev", "Nurb", 8, true, 8)]
public Nurb ptr_prev;
[DNAFieldAttribute(2, "short", "type", "short", 2, false, 16)]
[DNAFieldAttribute(8, "Nurb", 0, "*next", "Nurb", true, 0)]
public Nurb next;
[DNAFieldAttribute(8, "Nurb", 1, "*prev", "Nurb", true, 8)]
public Nurb prev;
[DNAFieldAttribute(2, "short", 2, "type", "short", false, 16)]
public short type;
[DNAFieldAttribute(3, "short", "mat_nr", "short", 2, false, 18)]
[DNAFieldAttribute(2, "short", 3, "mat_nr", "short", false, 18)]
public short mat_nr;
[DNAFieldAttribute(4, "short", "hide", "short", 2, false, 20)]
[DNAFieldAttribute(2, "short", 4, "hide", "short", false, 20)]
public short hide;
[DNAFieldAttribute(5, "short", "flag", "short", 2, false, 22)]
[DNAFieldAttribute(2, "short", 5, "flag", "short", false, 22)]
public short flag;
[DNAFieldAttribute(6, "int", "pntsu", "int", 4, false, 24)]
[DNAFieldAttribute(4, "int", 6, "pntsu", "int", false, 24)]
public int pntsu;
[DNAFieldAttribute(7, "int", "pntsv", "int", 4, false, 28)]
[DNAFieldAttribute(4, "int", 7, "pntsv", "int", false, 28)]
public int pntsv;
[DNAFieldAttribute(8, "char", "_pad[4]", "System.Char[]", 4, false, 32)]
[DNAFieldAttribute(4, "char", 8, "_pad[4]", "System.Char[]", false, 32)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(9, "short", "resolu", "short", 2, false, 36)]
[DNAFieldAttribute(2, "short", 9, "resolu", "short", false, 36)]
public short resolu;
[DNAFieldAttribute(10, "short", "resolv", "short", 2, false, 38)]
[DNAFieldAttribute(2, "short", 10, "resolv", "short", false, 38)]
public short resolv;
[DNAFieldAttribute(11, "short", "orderu", "short", 2, false, 40)]
[DNAFieldAttribute(2, "short", 11, "orderu", "short", false, 40)]
public short orderu;
[DNAFieldAttribute(12, "short", "orderv", "short", 2, false, 42)]
[DNAFieldAttribute(2, "short", 12, "orderv", "short", false, 42)]
public short orderv;
[DNAFieldAttribute(13, "short", "flagu", "short", 2, false, 44)]
[DNAFieldAttribute(2, "short", 13, "flagu", "short", false, 44)]
public short flagu;
[DNAFieldAttribute(14, "short", "flagv", "short", 2, false, 46)]
[DNAFieldAttribute(2, "short", 14, "flagv", "short", false, 46)]
public short flagv;
[DNAFieldAttribute(15, "float", "*knotsu", "float", 8, true, 48)]
public float ptr_knotsu;
[DNAFieldAttribute(16, "float", "*knotsv", "float", 8, true, 56)]
public float ptr_knotsv;
[DNAFieldAttribute(17, "BPoint", "*bp", "BPoint", 8, true, 64)]
public BPoint ptr_bp;
[DNAFieldAttribute(18, "BezTriple", "*bezt", "BezTriple", 8, true, 72)]
public BezTriple ptr_bezt;
[DNAFieldAttribute(19, "short", "tilt_interp", "short", 2, false, 80)]
[DNAFieldAttribute(8, "float", 15, "*knotsu", "float", true, 48)]
public float knotsu;
[DNAFieldAttribute(8, "float", 16, "*knotsv", "float", true, 56)]
public float knotsv;
[DNAFieldAttribute(8, "BPoint", 17, "*bp", "BPoint", true, 64)]
public BPoint bp;
[DNAFieldAttribute(8, "BezTriple", 18, "*bezt", "BezTriple", true, 72)]
public BezTriple bezt;
[DNAFieldAttribute(2, "short", 19, "tilt_interp", "short", false, 80)]
public short tilt_interp;
[DNAFieldAttribute(20, "short", "radius_interp", "short", 2, false, 82)]
[DNAFieldAttribute(2, "short", 20, "radius_interp", "short", false, 82)]
public short radius_interp;
[DNAFieldAttribute(21, "int", "charidx", "int", 4, false, 84)]
[DNAFieldAttribute(4, "int", 21, "charidx", "int", false, 84)]
public int charidx;
public Nurb() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.type = default;
this.mat_nr = default;
this.hide = default;
@@ -75,17 +75,17 @@ namespace BlendFile.DNA {
this.orderv = default;
this.flagu = default;
this.flagv = default;
this.ptr_knotsu = default;
this.ptr_knotsv = default;
this.ptr_bp = default;
this.ptr_bezt = default;
this.knotsu = default;
this.knotsv = default;
this.bp = default;
this.bezt = default;
this.tilt_interp = default;
this.radius_interp = default;
this.charidx = default;
}
public Nurb(
Nurb ptr_next,
Nurb ptr_prev,
Nurb next,
Nurb prev,
short type,
short mat_nr,
short hide,
@@ -99,15 +99,15 @@ namespace BlendFile.DNA {
short orderv,
short flagu,
short flagv,
float ptr_knotsu,
float ptr_knotsv,
BPoint ptr_bp,
BezTriple ptr_bezt,
float knotsu,
float knotsv,
BPoint bp,
BezTriple bezt,
short tilt_interp,
short radius_interp,
int charidx) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.next = next;
this.prev = prev;
this.type = type;
this.mat_nr = mat_nr;
this.hide = hide;
@@ -121,10 +121,10 @@ namespace BlendFile.DNA {
this.orderv = orderv;
this.flagu = flagu;
this.flagv = flagv;
this.ptr_knotsu = ptr_knotsu;
this.ptr_knotsv = ptr_knotsv;
this.ptr_bp = ptr_bp;
this.ptr_bezt = ptr_bezt;
this.knotsu = knotsu;
this.knotsv = knotsv;
this.bp = bp;
this.bezt = bezt;
this.tilt_interp = tilt_interp;
this.radius_interp = radius_interp;
this.charidx = charidx;