Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,52 +11,98 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class RegionView3D {
[DNAFieldAttribute(0, "float", "winmat[4][4]", 4)]
public float[,] winmat = new System.Single[4,4];
[DNAFieldAttribute(1, "float", "viewmat[4][4]", 4)]
public float[,] viewmat = new System.Single[4,4];
[DNAFieldAttribute(2, "float", "viewinv[4][4]", 4)]
public float[,] viewinv = new System.Single[4,4];
[DNAFieldAttribute(3, "float", "persmat[4][4]", 4)]
public float[,] persmat = new System.Single[4,4];
[DNAFieldAttribute(4, "float", "persinv[4][4]", 4)]
public float[,] persinv = new System.Single[4,4];
[DNAFieldAttribute(5, "float", "viewcamtexcofac[4]", 4)]
public float[] viewcamtexcofac = new System.Single[4];
[DNAFieldAttribute(6, "float", "viewmatob[4][4]", 4)]
public float[,] viewmatob = new System.Single[4,4];
[DNAFieldAttribute(7, "float", "persmatob[4][4]", 4)]
public float[,] persmatob = new System.Single[4,4];
[DNAFieldAttribute(8, "float", "clip[6][4]", 4)]
public float[,] clip = new System.Single[6,4];
[DNAFieldAttribute(9, "float", "clip_local[6][4]", 4)]
public float[,] clip_local = new System.Single[6,4];
[DNAFieldAttribute(10, "BoundBox", "*clipbb", 96)]
public BoundBox ptr_clipbb;
[DNAFieldAttribute(11, "RegionView3D", "*localvd", 928)]
public RegionView3D ptr_localvd;
[DNAFieldAttribute(12, "ViewRender", "*view_render", 0)]
public ViewRender ptr_view_render;
[DNAFieldAttribute(13, "SmoothView3DStore", "*sms", 0)]
public SmoothView3DStore ptr_sms;
[DNAFieldAttribute(14, "wmTimer", "*smooth_timer", 0)]
public wmTimer ptr_smooth_timer;
[DNAFieldAttribute(15, "float", "twmat[4][4]", 4)]
public float[,] twmat = new System.Single[4,4];
[DNAFieldAttribute(16, "float", "tw_axis_min[3]", 4)]
public float[] tw_axis_min = new System.Single[3];
[DNAFieldAttribute(17, "float", "tw_axis_max[3]", 4)]
public float[] tw_axis_max = new System.Single[3];
[DNAFieldAttribute(18, "float", "tw_axis_matrix[3][3]", 4)]
public float[,] tw_axis_matrix = new System.Single[3,3];
[DNAFieldAttribute(19, "float", "gridview", 4)]
public float gridview;
[DNAFieldAttribute(20, "float", "viewquat[4]", 4)]
public float[] viewquat = new System.Single[4];
[DNAFieldAttribute(21, "float", "dist", 4)]
public float dist;
[DNAFieldAttribute(22, "float", "camdx", 4)]
public float camdx;
[DNAFieldAttribute(23, "float", "camdy", 4)]
public float camdy;
[DNAFieldAttribute(24, "float", "pixsize", 4)]
public float pixsize;
[DNAFieldAttribute(25, "float", "ofs[3]", 4)]
public float[] ofs = new System.Single[3];
[DNAFieldAttribute(26, "float", "camzoom", 4)]
public float camzoom;
[DNAFieldAttribute(27, "char", "is_persp", 1)]
public char is_persp;
[DNAFieldAttribute(28, "char", "persp", 1)]
public char persp;
[DNAFieldAttribute(29, "char", "view", 1)]
public char view;
[DNAFieldAttribute(30, "char", "view_axis_roll", 1)]
public char view_axis_roll;
[DNAFieldAttribute(31, "char", "viewlock", 1)]
public char viewlock;
[DNAFieldAttribute(32, "char", "runtime_viewlock", 1)]
public char runtime_viewlock;
[DNAFieldAttribute(33, "char", "viewlock_quad", 1)]
public char viewlock_quad;
[DNAFieldAttribute(34, "char", "_pad[1]", 1)]
public char[] _pad = new System.Char[1];
[DNAFieldAttribute(35, "float", "ofs_lock[2]", 4)]
public float[] ofs_lock = new System.Single[2];
[DNAFieldAttribute(36, "short", "twdrawflag", 2)]
public short twdrawflag;
[DNAFieldAttribute(37, "short", "rflag", 2)]
public short rflag;
[DNAFieldAttribute(38, "float", "lviewquat[4]", 4)]
public float[] lviewquat = new System.Single[4];
[DNAFieldAttribute(39, "char", "lpersp", 1)]
public char lpersp;
[DNAFieldAttribute(40, "char", "lview", 1)]
public char lview;
[DNAFieldAttribute(41, "char", "lview_axis_roll", 1)]
public char lview_axis_roll;
[DNAFieldAttribute(42, "char", "_pad8[1]", 1)]
public char[] _pad8 = new System.Char[1];
[DNAFieldAttribute(43, "float", "rot_angle", 4)]
public float rot_angle;
[DNAFieldAttribute(44, "float", "rot_axis[3]", 4)]
public float[] rot_axis = new System.Single[3];
public RegionView3D(
float[,] winmat,