IGraphicItem
Represents a graphics item object, that can provide tesselated data
            into the given render package.
            
namespace Autodesk.DesignScript.Interfaces
{
    public interface IGraphicItem
    {
        void Tessellate(IRenderPackage package, TessellationParameters parameters);
    }
}