IInstanceableGraphicItem
An interface that defines items whose graphics are defined by a single base tessellation and instance transforms defined by 4x4 transformation matrices.
using System;
namespace Autodesk.DesignScript.Interfaces
{
public interface IInstanceableGraphicItem
{
Guid BaseTessellationGuid { get; }
bool InstanceInfoAvailable { get; }
void AddBaseTessellation(IInstancingRenderPackage package, TessellationParameters parameters);
void AddInstance(IInstancingRenderPackage package, TessellationParameters parameters, string labelKey);
}
}