Files
BlenderSharp/BlendFile/DNA/bItasc.cs
2025-01-22 20:24:55 +01:00

57 lines
2.1 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;
public struct bItasc {
[DNAFieldAttribute(0, "int", "iksolver", 4)]
public int iksolver;
[DNAFieldAttribute(1, "float", "precision", 4)]
public float precision;
[DNAFieldAttribute(2, "short", "numiter", 2)]
public short numiter;
[DNAFieldAttribute(3, "short", "numstep", 2)]
public short numstep;
[DNAFieldAttribute(4, "float", "minstep", 4)]
public float minstep;
[DNAFieldAttribute(5, "float", "maxstep", 4)]
public float maxstep;
[DNAFieldAttribute(6, "short", "solver", 2)]
public short solver;
[DNAFieldAttribute(7, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(8, "float", "feedback", 4)]
public float feedback;
[DNAFieldAttribute(9, "float", "maxvel", 4)]
public float maxvel;
[DNAFieldAttribute(10, "float", "dampmax", 4)]
public float dampmax;
[DNAFieldAttribute(11, "float", "dampeps", 4)]
public float dampeps;
public bItasc(int iksolver, float precision, short numiter, short numstep, float minstep, float maxstep, short solver, short flag, float feedback, float maxvel, float dampmax, float dampeps) {
this.iksolver = iksolver;
this.precision = precision;
this.numiter = numiter;
this.numstep = numstep;
this.minstep = minstep;
this.maxstep = maxstep;
this.solver = solver;
this.flag = flag;
this.feedback = feedback;
this.maxvel = maxvel;
this.dampmax = dampmax;
this.dampeps = dampeps;
}
}
}