Files
BlenderSharp/BlendFile/DNA/VolumeDisplay.cs
2025-01-22 02:23:29 +01:00

25 lines
1002 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct VolumeDisplay {
public float density;
public int wireframe_type;
public int wireframe_detail;
public int interpolation_method;
public int axis_slice_method;
public int slice_axis;
public float slice_depth;
public int[] _pad = new System.Int32[1];
public VolumeDisplay(float density, int wireframe_type, int wireframe_detail, int interpolation_method, int axis_slice_method, int slice_axis, float slice_depth, int[] _pad) {
this.density = density;
this.wireframe_type = wireframe_type;
this.wireframe_detail = wireframe_detail;
this.interpolation_method = interpolation_method;
this.axis_slice_method = axis_slice_method;
this.slice_axis = slice_axis;
this.slice_depth = slice_depth;
this._pad = _pad;
}
}
}