27 lines
1.2 KiB
C#
27 lines
1.2 KiB
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public class CurvesGeometry {
|
|
public int ptr_curve_offsets;
|
|
public CustomData point_data;
|
|
public CustomData curve_data;
|
|
public int point_size;
|
|
public int curve_size;
|
|
public ListBase vertex_group_names;
|
|
public int vertex_group_active_index;
|
|
public int attributes_active_index;
|
|
public CurvesGeometryRuntimeHandle ptr_runtime;
|
|
public CurvesGeometry(int ptr_curve_offsets, CustomData point_data, CustomData curve_data, int point_size, int curve_size, ListBase vertex_group_names, int vertex_group_active_index, int attributes_active_index, CurvesGeometryRuntimeHandle ptr_runtime) {
|
|
this.ptr_curve_offsets = ptr_curve_offsets;
|
|
this.point_data = point_data;
|
|
this.curve_data = curve_data;
|
|
this.point_size = point_size;
|
|
this.curve_size = curve_size;
|
|
this.vertex_group_names = vertex_group_names;
|
|
this.vertex_group_active_index = vertex_group_active_index;
|
|
this.attributes_active_index = attributes_active_index;
|
|
this.ptr_runtime = ptr_runtime;
|
|
}
|
|
}
|
|
}
|