Files
BlenderSharp/BlendFile/DNA/CurveProfile.cs

42 lines
1.5 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 01/22/2025 16:57: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;
}
}
}