//------------------------------------------------------------------------------ // // 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; public class ScrewModifierData { [DNAFieldAttribute(0, "ModifierData", "modifier", 120)] public ModifierData modifier; [DNAFieldAttribute(1, "Object", "*ob_axis", 1160)] public Object ptr_ob_axis; [DNAFieldAttribute(2, "int", "steps", 4)] public int steps; [DNAFieldAttribute(3, "int", "render_steps", 4)] public int render_steps; [DNAFieldAttribute(4, "int", "iter", 4)] public int iter; [DNAFieldAttribute(5, "float", "screw_ofs", 4)] public float screw_ofs; [DNAFieldAttribute(6, "float", "angle", 4)] public float angle; [DNAFieldAttribute(7, "float", "merge_dist", 4)] public float merge_dist; [DNAFieldAttribute(8, "short", "flag", 2)] public short flag; [DNAFieldAttribute(9, "char", "axis", 1)] public char axis; [DNAFieldAttribute(10, "char", "_pad[5]", 1)] public char[] _pad = new System.Char[5]; [DNAFieldAttribute(11, "void", "*_pad1", 0)] public object ptr__pad1; public ScrewModifierData(ModifierData modifier, Object ptr_ob_axis, int steps, int render_steps, int iter, float screw_ofs, float angle, float merge_dist, short flag, char axis, char[] _pad, object ptr__pad1) { this.modifier = modifier; this.ptr_ob_axis = ptr_ob_axis; this.steps = steps; this.render_steps = render_steps; this.iter = iter; this.screw_ofs = screw_ofs; this.angle = angle; this.merge_dist = merge_dist; this.flag = flag; this.axis = axis; this._pad = _pad; this.ptr__pad1 = ptr__pad1; } } }