//------------------------------------------------------------------------------ // // 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(825, "CurvePaintSettings", 32)] public class CurvePaintSettings { [DNAFieldAttribute(1, "char", 0, "curve_type", "char", false, 0)] public char curve_type; [DNAFieldAttribute(1, "char", 1, "flag", "char", false, 1)] public char flag; [DNAFieldAttribute(1, "char", 2, "depth_mode", "char", false, 2)] public char depth_mode; [DNAFieldAttribute(1, "char", 3, "surface_plane", "char", false, 3)] public char surface_plane; [DNAFieldAttribute(1, "char", 4, "fit_method", "char", false, 4)] public char fit_method; [DNAFieldAttribute(1, "char", 5, "_pad", "char", false, 5)] public char _pad; [DNAFieldAttribute(2, "short", 6, "error_threshold", "short", false, 6)] public short error_threshold; [DNAFieldAttribute(4, "float", 7, "radius_min", "float", false, 8)] public float radius_min; [DNAFieldAttribute(4, "float", 8, "radius_max", "float", false, 12)] public float radius_max; [DNAFieldAttribute(4, "float", 9, "radius_taper_start", "float", false, 16)] public float radius_taper_start; [DNAFieldAttribute(4, "float", 10, "radius_taper_end", "float", false, 20)] public float radius_taper_end; [DNAFieldAttribute(4, "float", 11, "surface_offset", "float", false, 24)] public float surface_offset; [DNAFieldAttribute(4, "float", 12, "corner_angle", "float", 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; } } }