Files
BlenderSharp/BlendFile/DNA/Lattice.cs
2025-01-22 17:40:14 +01:00

111 lines
3.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 BlendFile.CompatTypes;
using System;
namespace BlendFile.DNA {
public class Lattice {
public ID id;
public AnimData ptr_adt;
public short pntsu;
public short pntsv;
public short pntsw;
public short flag;
public short opntsu;
public short opntsv;
public short opntsw;
public char[] _pad2 = new System.Char[3];
public char typeu;
public char typev;
public char typew;
public int actbp;
public float fu;
public float fv;
public float fw;
public float du;
public float dv;
public float dw;
public BPoint ptr_def;
public Ipo ptr_ipo;
public Key ptr_key;
public MDeformVert ptr_dvert;
public char[] vgroup = new System.Char[64];
public ListBase vertex_group_names;
public int vertex_group_active_index;
public char[] _pad0 = new System.Char[4];
public EditLatt ptr_editlatt;
public object ptr_batch_cache;
public Lattice(
ID id,
AnimData ptr_adt,
short pntsu,
short pntsv,
short pntsw,
short flag,
short opntsu,
short opntsv,
short opntsw,
char[] _pad2,
char typeu,
char typev,
char typew,
int actbp,
float fu,
float fv,
float fw,
float du,
float dv,
float dw,
BPoint ptr_def,
Ipo ptr_ipo,
Key ptr_key,
MDeformVert ptr_dvert,
char[] vgroup,
ListBase vertex_group_names,
int vertex_group_active_index,
char[] _pad0,
EditLatt ptr_editlatt,
object ptr_batch_cache) {
this.id = id;
this.ptr_adt = ptr_adt;
this.pntsu = pntsu;
this.pntsv = pntsv;
this.pntsw = pntsw;
this.flag = flag;
this.opntsu = opntsu;
this.opntsv = opntsv;
this.opntsw = opntsw;
this._pad2 = _pad2;
this.typeu = typeu;
this.typev = typev;
this.typew = typew;
this.actbp = actbp;
this.fu = fu;
this.fv = fv;
this.fw = fw;
this.du = du;
this.dv = dv;
this.dw = dw;
this.ptr_def = ptr_def;
this.ptr_ipo = ptr_ipo;
this.ptr_key = ptr_key;
this.ptr_dvert = ptr_dvert;
this.vgroup = vgroup;
this.vertex_group_names = vertex_group_names;
this.vertex_group_active_index = vertex_group_active_index;
this._pad0 = _pad0;
this.ptr_editlatt = ptr_editlatt;
this.ptr_batch_cache = ptr_batch_cache;
}
}
}