13 lines
342 B
C#
13 lines
342 B
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public struct PaintCurvePoint {
|
|
public BezTriple bez;
|
|
public float pressure;
|
|
public PaintCurvePoint(BezTriple bez, float pressure) {
|
|
this.bez = bez;
|
|
this.pressure = pressure;
|
|
}
|
|
}
|
|
}
|