//------------------------------------------------------------------------------ // // 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 BlendFile.CompatTypes; using System; namespace BlendFile.DNA { public struct CurvePaintSettings { public char curve_type; public char flag; public char depth_mode; public char surface_plane; public char fit_method; public char _pad; public short error_threshold; public float radius_min; public float radius_max; public float radius_taper_start; public float radius_taper_end; public float surface_offset; public float corner_angle; 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; } } }