Files
BlenderSharp/BlendFile/DNA/bPoseChannel_BBoneSegmentBoundary.cs
2025-02-19 18:48:50 +01:00

40 lines
1.5 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(48, "bPoseChannel_BBoneSegmentBoundary", 32)]
public struct bPoseChannel_BBoneSegmentBoundary {
[DNAFieldAttribute(0, "float", "point[3]", "System.Single[]", 12, false)]
public float[] point = new System.Single[3];
[DNAFieldAttribute(1, "float", "plane_normal[3]", "System.Single[]", 12, false)]
public float[] plane_normal = new System.Single[3];
[DNAFieldAttribute(2, "float", "plane_offset", "float", 4, false)]
public float plane_offset;
[DNAFieldAttribute(3, "float", "depth_scale", "float", 4, false)]
public float depth_scale;
public bPoseChannel_BBoneSegmentBoundary() {
this.point = default;
this.plane_normal = default;
this.plane_offset = default;
this.depth_scale = default;
}
public bPoseChannel_BBoneSegmentBoundary(float[] point, float[] plane_normal, float plane_offset, float depth_scale) {
this.point = point;
this.plane_normal = plane_normal;
this.plane_offset = plane_offset;
this.depth_scale = depth_scale;
}
}
}