76 lines
3.3 KiB
C#
76 lines
3.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(825, "CurvePaintSettings", 32)]
|
|
public struct CurvePaintSettings {
|
|
[DNAFieldAttribute(0, "char", "curve_type", "char", 1, false, 0)]
|
|
public char curve_type;
|
|
[DNAFieldAttribute(1, "char", "flag", "char", 1, false, 1)]
|
|
public char flag;
|
|
[DNAFieldAttribute(2, "char", "depth_mode", "char", 1, false, 2)]
|
|
public char depth_mode;
|
|
[DNAFieldAttribute(3, "char", "surface_plane", "char", 1, false, 3)]
|
|
public char surface_plane;
|
|
[DNAFieldAttribute(4, "char", "fit_method", "char", 1, false, 4)]
|
|
public char fit_method;
|
|
[DNAFieldAttribute(5, "char", "_pad", "char", 1, false, 5)]
|
|
public char _pad;
|
|
[DNAFieldAttribute(6, "short", "error_threshold", "short", 2, false, 6)]
|
|
public short error_threshold;
|
|
[DNAFieldAttribute(7, "float", "radius_min", "float", 4, false, 8)]
|
|
public float radius_min;
|
|
[DNAFieldAttribute(8, "float", "radius_max", "float", 4, false, 12)]
|
|
public float radius_max;
|
|
[DNAFieldAttribute(9, "float", "radius_taper_start", "float", 4, false, 16)]
|
|
public float radius_taper_start;
|
|
[DNAFieldAttribute(10, "float", "radius_taper_end", "float", 4, false, 20)]
|
|
public float radius_taper_end;
|
|
[DNAFieldAttribute(11, "float", "surface_offset", "float", 4, false, 24)]
|
|
public float surface_offset;
|
|
[DNAFieldAttribute(12, "float", "corner_angle", "float", 4, false, 28)]
|
|
public float corner_angle;
|
|
public CurvePaintSettings() {
|
|
this.curve_type = default;
|
|
this.flag = default;
|
|
this.depth_mode = default;
|
|
this.surface_plane = default;
|
|
this.fit_method = default;
|
|
this._pad = default;
|
|
this.error_threshold = default;
|
|
this.radius_min = default;
|
|
this.radius_max = default;
|
|
this.radius_taper_start = default;
|
|
this.radius_taper_end = default;
|
|
this.surface_offset = default;
|
|
this.corner_angle = default;
|
|
}
|
|
public CurvePaintSettings(char curve_type, char flag, char depth_mode, char surface_plane, char fit_method, char _pad, short error_threshold, float radius_min, float radius_max, float radius_taper_start, float radius_taper_end, float surface_offset, float corner_angle) {
|
|
this.curve_type = curve_type;
|
|
this.flag = flag;
|
|
this.depth_mode = depth_mode;
|
|
this.surface_plane = surface_plane;
|
|
this.fit_method = fit_method;
|
|
this._pad = _pad;
|
|
this.error_threshold = error_threshold;
|
|
this.radius_min = radius_min;
|
|
this.radius_max = radius_max;
|
|
this.radius_taper_start = radius_taper_start;
|
|
this.radius_taper_end = radius_taper_end;
|
|
this.surface_offset = surface_offset;
|
|
this.corner_angle = corner_angle;
|
|
}
|
|
}
|
|
}
|