Ejemplo n.º 1
0
        public int GetVertexCount(int nObjectID)
        {
            StoredCommands sc  = new StoredCommands();
            uint           key = sc.AppendSceneCommand_GetVertexCount(nObjectID);

            ExecuteCommands(sc);
            any_result r   = new any_result();
            bool       bOK = sc.GetSceneCommandResult_GetVertexCount(key, r);

            return((bOK) ? r.i : -1);
        }