Files
BlenderSharp/BlendFile/DNA/CurvesGeometry.cs

60 lines
2.6 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 System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(218, "CurvesGeometry")]
public class CurvesGeometry {
[DNAFieldAttribute(0, "int", "*curve_offsets", 4)]
public int ptr_curve_offsets;
[DNAFieldAttribute(1, "CustomData", "point_data", 248)]
public CustomData point_data;
[DNAFieldAttribute(2, "CustomData", "curve_data", 248)]
public CustomData curve_data;
[DNAFieldAttribute(3, "int", "point_size", 4)]
public int point_size;
[DNAFieldAttribute(4, "int", "curve_size", 4)]
public int curve_size;
[DNAFieldAttribute(5, "ListBase", "vertex_group_names", 16)]
public ListBase vertex_group_names;
[DNAFieldAttribute(6, "int", "vertex_group_active_index", 4)]
public int vertex_group_active_index;
[DNAFieldAttribute(7, "int", "attributes_active_index", 4)]
public int attributes_active_index;
[DNAFieldAttribute(8, "CurvesGeometryRuntimeHandle", "*runtime", 0)]
public CurvesGeometryRuntimeHandle ptr_runtime;
public CurvesGeometry() {
this.ptr_curve_offsets = default;
this.point_data = default;
this.curve_data = default;
this.point_size = default;
this.curve_size = default;
this.vertex_group_names = default;
this.vertex_group_active_index = default;
this.attributes_active_index = default;
this.ptr_runtime = default;
}
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;
}
}
}