Files
BlenderSharp/BlendFile/DNA/CurveProfile.cs
2025-01-22 02:23:29 +01:00

29 lines
1.1 KiB
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class CurveProfile {
public short path_len;
public short segments_len;
public int preset;
public CurveProfilePoint ptr_path;
public CurveProfilePoint ptr_table;
public CurveProfilePoint ptr_segments;
public int flag;
public int changed_timestamp;
public rctf view_rect;
public rctf clip_rect;
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) {
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.flag = flag;
this.changed_timestamp = changed_timestamp;
this.view_rect = view_rect;
this.clip_rect = clip_rect;
}
}
}