package away3d.materials { import away3d.core.draw.*; /** * Interface for materials that are capable of rendering triangle faces. */ public interface ITriangleMaterial extends IMaterial { /** * Sends data from the material coupled with data from the DrawTriangle primitive to the render session. */ function renderTriangle(tri:DrawTriangle):void; } }