//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(376, "LineStyleThicknessModifier_Curvature_3D", 128)] public class LineStyleThicknessModifier_Curvature_3D { [DNAFieldAttribute(0, "LineStyleModifier", "modifier", "LineStyleModifier", 96, false, 0)] public LineStyleModifier modifier; [DNAFieldAttribute(1, "CurveMapping", "*curve", "CurveMapping", 8, true, 96)] public CurveMapping ptr_curve; [DNAFieldAttribute(2, "int", "flags", "int", 4, false, 104)] public int flags; [DNAFieldAttribute(3, "char", "_pad[4]", "System.Char[]", 4, false, 108)] public char[] _pad = new System.Char[4]; [DNAFieldAttribute(4, "float", "min_curvature", "float", 4, false, 112)] public float min_curvature; [DNAFieldAttribute(5, "float", "max_curvature", "float", 4, false, 116)] public float max_curvature; [DNAFieldAttribute(6, "float", "min_thickness", "float", 4, false, 120)] public float min_thickness; [DNAFieldAttribute(7, "float", "max_thickness", "float", 4, false, 124)] public float max_thickness; public LineStyleThicknessModifier_Curvature_3D() { this.modifier = default; this.ptr_curve = default; this.flags = default; this._pad = default; this.min_curvature = default; this.max_curvature = default; this.min_thickness = default; this.max_thickness = default; } public LineStyleThicknessModifier_Curvature_3D(LineStyleModifier modifier, CurveMapping ptr_curve, int flags, char[] _pad, float min_curvature, float max_curvature, float min_thickness, float max_thickness) { this.modifier = modifier; this.ptr_curve = ptr_curve; this.flags = flags; this._pad = _pad; this.min_curvature = min_curvature; this.max_curvature = max_curvature; this.min_thickness = min_thickness; this.max_thickness = max_thickness; } } }