37 lines
1.1 KiB
C#
37 lines
1.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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public struct bSizeLimitConstraint {
|
|
public float xmin;
|
|
public float xmax;
|
|
public float ymin;
|
|
public float ymax;
|
|
public float zmin;
|
|
public float zmax;
|
|
public short flag;
|
|
public short flag2;
|
|
public bSizeLimitConstraint(float xmin, float xmax, float ymin, float ymax, float zmin, float zmax, short flag, short flag2) {
|
|
this.xmin = xmin;
|
|
this.xmax = xmax;
|
|
this.ymin = ymin;
|
|
this.ymax = ymax;
|
|
this.zmin = zmin;
|
|
this.zmax = zmax;
|
|
this.flag = flag;
|
|
this.flag2 = flag2;
|
|
}
|
|
}
|
|
}
|