28 lines
859 B
C#
28 lines
859 B
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 NodeBilateralBlurData {
|
|
public float sigma_color;
|
|
public float sigma_space;
|
|
public short iter;
|
|
public char[] _pad = new System.Char[2];
|
|
public NodeBilateralBlurData(float sigma_color, float sigma_space, short iter, char[] _pad) {
|
|
this.sigma_color = sigma_color;
|
|
this.sigma_space = sigma_space;
|
|
this.iter = iter;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|