56 lines
2.3 KiB
C#
56 lines
2.3 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(376, "LineStyleThicknessModifier_Curvature_3D")]
|
|
public class LineStyleThicknessModifier_Curvature_3D {
|
|
[DNAFieldAttribute(0, "LineStyleModifier", "modifier", "LineStyleModifier", 96)]
|
|
public LineStyleModifier modifier;
|
|
[DNAFieldAttribute(1, "CurveMapping", "*curve", "CurveMapping", 424)]
|
|
public CurveMapping ptr_curve;
|
|
[DNAFieldAttribute(2, "int", "flags", "int", 4)]
|
|
public int flags;
|
|
[DNAFieldAttribute(3, "char", "_pad[4]", "System.Char[]", 1)]
|
|
public char[] _pad = new System.Char[4];
|
|
[DNAFieldAttribute(4, "float", "min_curvature", "float", 4)]
|
|
public float min_curvature;
|
|
[DNAFieldAttribute(5, "float", "max_curvature", "float", 4)]
|
|
public float max_curvature;
|
|
[DNAFieldAttribute(6, "float", "min_thickness", "float", 4)]
|
|
public float min_thickness;
|
|
[DNAFieldAttribute(7, "float", "max_thickness", "float", 4)]
|
|
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;
|
|
}
|
|
}
|
|
}
|