Files
BlenderSharp/BlendFile/DNA/bGPDcurve_point.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

40 lines
1.3 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 bGPDcurve_point {
public BezTriple bezt;
public float pressure;
public float strength;
public int point_index;
public int flag;
public float uv_fac;
public float uv_rot;
public float[] uv_fill = new System.Single[2];
public float[] vert_color = new System.Single[4];
public char[] _pad = new System.Char[4];
public bGPDcurve_point(BezTriple bezt, float pressure, float strength, int point_index, int flag, float uv_fac, float uv_rot, float[] uv_fill, float[] vert_color, char[] _pad) {
this.bezt = bezt;
this.pressure = pressure;
this.strength = strength;
this.point_index = point_index;
this.flag = flag;
this.uv_fac = uv_fac;
this.uv_rot = uv_rot;
this.uv_fill = uv_fill;
this.vert_color = vert_color;
this._pad = _pad;
}
}
}