Regenerated codefiles
This commit is contained in:
@@ -15,45 +15,45 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(213, "CurveProfile", 72)]
|
||||
public class CurveProfile {
|
||||
[DNAFieldAttribute(0, "short", "path_len", "short", 2, false, 0)]
|
||||
[DNAFieldAttribute(2, "short", 0, "path_len", "short", false, 0)]
|
||||
public short path_len;
|
||||
[DNAFieldAttribute(1, "short", "segments_len", "short", 2, false, 2)]
|
||||
[DNAFieldAttribute(2, "short", 1, "segments_len", "short", false, 2)]
|
||||
public short segments_len;
|
||||
[DNAFieldAttribute(2, "int", "preset", "int", 4, false, 4)]
|
||||
[DNAFieldAttribute(4, "int", 2, "preset", "int", false, 4)]
|
||||
public int preset;
|
||||
[DNAFieldAttribute(3, "CurveProfilePoint", "*path", "CurveProfilePoint", 8, true, 8)]
|
||||
public CurveProfilePoint ptr_path;
|
||||
[DNAFieldAttribute(4, "CurveProfilePoint", "*table", "CurveProfilePoint", 8, true, 16)]
|
||||
public CurveProfilePoint ptr_table;
|
||||
[DNAFieldAttribute(5, "CurveProfilePoint", "*segments", "CurveProfilePoint", 8, true, 24)]
|
||||
public CurveProfilePoint ptr_segments;
|
||||
[DNAFieldAttribute(6, "int", "flag", "int", 4, false, 32)]
|
||||
[DNAFieldAttribute(8, "CurveProfilePoint", 3, "*path", "CurveProfilePoint", true, 8)]
|
||||
public CurveProfilePoint path;
|
||||
[DNAFieldAttribute(8, "CurveProfilePoint", 4, "*table", "CurveProfilePoint", true, 16)]
|
||||
public CurveProfilePoint table;
|
||||
[DNAFieldAttribute(8, "CurveProfilePoint", 5, "*segments", "CurveProfilePoint", true, 24)]
|
||||
public CurveProfilePoint segments;
|
||||
[DNAFieldAttribute(4, "int", 6, "flag", "int", false, 32)]
|
||||
public int flag;
|
||||
[DNAFieldAttribute(7, "int", "changed_timestamp", "int", 4, false, 36)]
|
||||
[DNAFieldAttribute(4, "int", 7, "changed_timestamp", "int", false, 36)]
|
||||
public int changed_timestamp;
|
||||
[DNAFieldAttribute(8, "rctf", "view_rect", "rctf", 16, false, 40)]
|
||||
[DNAFieldAttribute(16, "rctf", 8, "view_rect", "rctf", false, 40)]
|
||||
public rctf view_rect;
|
||||
[DNAFieldAttribute(9, "rctf", "clip_rect", "rctf", 16, false, 56)]
|
||||
[DNAFieldAttribute(16, "rctf", 9, "clip_rect", "rctf", false, 56)]
|
||||
public rctf clip_rect;
|
||||
public CurveProfile() {
|
||||
this.path_len = default;
|
||||
this.segments_len = default;
|
||||
this.preset = default;
|
||||
this.ptr_path = default;
|
||||
this.ptr_table = default;
|
||||
this.ptr_segments = default;
|
||||
this.path = default;
|
||||
this.table = default;
|
||||
this.segments = default;
|
||||
this.flag = default;
|
||||
this.changed_timestamp = default;
|
||||
this.view_rect = default;
|
||||
this.clip_rect = default;
|
||||
}
|
||||
public CurveProfile(short path_len, short segments_len, int preset, CurveProfilePoint ptr_path, CurveProfilePoint ptr_table, CurveProfilePoint ptr_segments, int flag, int changed_timestamp, rctf view_rect, rctf clip_rect) {
|
||||
public CurveProfile(short path_len, short segments_len, int preset, CurveProfilePoint path, CurveProfilePoint table, CurveProfilePoint segments, int flag, int changed_timestamp, rctf view_rect, rctf clip_rect) {
|
||||
this.path_len = path_len;
|
||||
this.segments_len = segments_len;
|
||||
this.preset = preset;
|
||||
this.ptr_path = ptr_path;
|
||||
this.ptr_table = ptr_table;
|
||||
this.ptr_segments = ptr_segments;
|
||||
this.path = path;
|
||||
this.table = table;
|
||||
this.segments = segments;
|
||||
this.flag = flag;
|
||||
this.changed_timestamp = changed_timestamp;
|
||||
this.view_rect = view_rect;
|
||||
|
||||
Reference in New Issue
Block a user