CSharpGL.PickableRenderer.GetVertexCount C# (CSharp) Method

GetVertexCount() public method

public GetVertexCount ( ) : uint
return uint
        public uint GetVertexCount()
        {
            InnerPickableRenderer renderer = this.innerPickableRenderer;
            if (renderer == null) { throw new Exception("InnerPickableRenderer is null!"); }

            return renderer.GetVertexCount();
        }