52 lines
2.1 KiB
C#
52 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;
|
|
|
|
[DNAClassAttribute(499, "LaplacianSmoothModifierData", 200)]
|
|
public class LaplacianSmoothModifierData {
|
|
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
|
|
public ModifierData modifier;
|
|
[DNAFieldAttribute(4, "float", 1, "lambda", "float", false, 120)]
|
|
public float lambda;
|
|
[DNAFieldAttribute(4, "float", 2, "lambda_border", "float", false, 124)]
|
|
public float lambda_border;
|
|
[DNAArrayAttribute(4, "char", 3, "_pad1[4]", "System.Char[]", 4, 128)]
|
|
public char[] _pad1 = new System.Char[4];
|
|
[DNAArrayAttribute(64, "char", 4, "defgrp_name[64]", "System.Char[]", 64, 132)]
|
|
public char[] defgrp_name = new System.Char[64];
|
|
[DNAFieldAttribute(2, "short", 5, "flag", "short", false, 196)]
|
|
public short flag;
|
|
[DNAFieldAttribute(2, "short", 6, "repeat", "short", false, 198)]
|
|
public short repeat;
|
|
public LaplacianSmoothModifierData() {
|
|
this.modifier = default;
|
|
this.lambda = default;
|
|
this.lambda_border = default;
|
|
this._pad1 = default;
|
|
this.defgrp_name = default;
|
|
this.flag = default;
|
|
this.repeat = default;
|
|
}
|
|
public LaplacianSmoothModifierData(ModifierData modifier, float lambda, float lambda_border, char[] _pad1, char[] defgrp_name, short flag, short repeat) {
|
|
this.modifier = modifier;
|
|
this.lambda = lambda;
|
|
this.lambda_border = lambda_border;
|
|
this._pad1 = _pad1;
|
|
this.defgrp_name = defgrp_name;
|
|
this.flag = flag;
|
|
this.repeat = repeat;
|
|
}
|
|
}
|
|
}
|