52 lines
2.0 KiB
C#
52 lines
2.0 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")]
|
|
public struct LaplacianSmoothModifierData {
|
|
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)]
|
|
public ModifierData modifier;
|
|
[DNAFieldAttribute(1, "float", "lambda", "float", 4, false)]
|
|
public float lambda;
|
|
[DNAFieldAttribute(2, "float", "lambda_border", "float", 4, false)]
|
|
public float lambda_border;
|
|
[DNAFieldAttribute(3, "char", "_pad1[4]", "System.Char[]", 4, false)]
|
|
public char[] _pad1 = new System.Char[4];
|
|
[DNAFieldAttribute(4, "char", "defgrp_name[64]", "System.Char[]", 64, false)]
|
|
public char[] defgrp_name = new System.Char[64];
|
|
[DNAFieldAttribute(5, "short", "flag", "short", 2, false)]
|
|
public short flag;
|
|
[DNAFieldAttribute(6, "short", "repeat", "short", 2, false)]
|
|
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;
|
|
}
|
|
}
|
|
}
|