Beispiel #1
0
        public List <int> ImportFile(string sPath)
        {
            StoredCommands sc  = new StoredCommands();
            uint           key = sc.AppendSceneCommand_AppendMeshFile(sPath);

            ExecuteCommands(sc);
            vectori objs = new vectori();

            sc.GetSceneCommandResult_AppendMeshFile(key, objs);
            return(objs.ToList());
        }