37 lines
1.3 KiB
C#
37 lines
1.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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class LineStyleThicknessModifier_Curvature_3D {
|
|
public LineStyleModifier modifier;
|
|
public CurveMapping ptr_curve;
|
|
public int flags;
|
|
public char[] _pad = new System.Char[4];
|
|
public float min_curvature;
|
|
public float max_curvature;
|
|
public float min_thickness;
|
|
public float max_thickness;
|
|
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;
|
|
}
|
|
}
|
|
}
|