Files
BlenderSharp/BlendFile/DNA/ScrewModifierData.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

44 lines
1.5 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 {
public class ScrewModifierData {
public ModifierData modifier;
public Object ptr_ob_axis;
public int steps;
public int render_steps;
public int iter;
public float screw_ofs;
public float angle;
public float merge_dist;
public short flag;
public char axis;
public char[] _pad = new System.Char[5];
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;
}
}
}