IGraphicPrimitives
interface IGraphicPrimitives
The interface that represents json data for drawing a graphic primitive
namespace Autodesk.DesignScript.Interfaces
{
internal interface IGraphicPrimitives
{
string TriangleVertices { get; }
string TriangleNormals { get; }
string TriangleVertexColors { get; }
string TriangleTextureCoordinates { get; }
string LineStripVertices { get; }
string LineStripCounts { get; }
string LineStripColors { get; }
string PointVertices { get; }
string PointVertexColors { get; }
string Colors { get; }
string ColorsStride { get; }
bool RequiresPerVertexColoration { get; }
}
}