34 lines
1.1 KiB
C#
34 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 System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public struct LaplacianSmoothModifierData {
|
|
public ModifierData modifier;
|
|
public float lambda;
|
|
public float lambda_border;
|
|
public char[] _pad1 = new System.Char[4];
|
|
public char[] defgrp_name = new System.Char[64];
|
|
public short flag;
|
|
public short repeat;
|
|
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;
|
|
}
|
|
}
|
|
}
|