30 lines
830 B
C#
30 lines
830 B
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 bGPDcontrolpoint {
|
|
public float x;
|
|
public float y;
|
|
public float z;
|
|
public float[] color = new System.Single[4];
|
|
public int size;
|
|
public bGPDcontrolpoint(float x, float y, float z, float[] color, int size) {
|
|
this.x = x;
|
|
this.y = y;
|
|
this.z = z;
|
|
this.color = color;
|
|
this.size = size;
|
|
}
|
|
}
|
|
}
|