Files
BlenderSharp/BlendFile/DNA/LineStyleGeometryModifier_SinusDisplacement.cs
2025-03-11 19:12:04 +01:00

44 lines
1.7 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(391, "LineStyleGeometryModifier_SinusDisplacement", 112)]
public class LineStyleGeometryModifier_SinusDisplacement {
[DNAFieldAttribute(96, "LineStyleModifier", 0, "modifier", "LineStyleModifier", false, 0)]
public LineStyleModifier modifier;
[DNAFieldAttribute(4, "float", 1, "wavelength", "float", false, 96)]
public float wavelength;
[DNAFieldAttribute(4, "float", 2, "amplitude", "float", false, 100)]
public float amplitude;
[DNAFieldAttribute(4, "float", 3, "phase", "float", false, 104)]
public float phase;
[DNAArrayAttribute(4, "char", 4, "_pad[4]", "System.Char[]", 4, 108)]
public char[] _pad = new System.Char[4];
public LineStyleGeometryModifier_SinusDisplacement() {
this.modifier = default;
this.wavelength = default;
this.amplitude = default;
this.phase = default;
this._pad = default;
}
public LineStyleGeometryModifier_SinusDisplacement(LineStyleModifier modifier, float wavelength, float amplitude, float phase, char[] _pad) {
this.modifier = modifier;
this.wavelength = wavelength;
this.amplitude = amplitude;
this.phase = phase;
this._pad = _pad;
}
}
}