如何清空选择集
<font face="宋体" size="2">在CAD使用过程中,有时会提示;超出选择集的最大数量 这是怎么回事?是不是选择集到达极限?不明白在cad程序中选择集如何积累?如何清空把原先累积的选择集清空?</font> <p><a href="http://www.autocad.com.tw/asp/ShowRecord.asp?WebName=AutoCAD&ID=471">http://www.autocad.com.tw/asp/ShowRecord.asp?WebName=AutoCAD&ID=471</a></p><p>.....and set unneeded selection sets to nil as soon as possible <br/></p> Help 文件上面的原话:<br/> <br/>Selectionsets consume AutoCAD temporary file slots, so AutoLISP is not permitted to have
more than 128 open at one time. If this limit is reached, AutoCAD cannot create
any more selection sets and returns nil to all <em class="codeEmphasisStrong">ssget</em> calls. To close an
unnecessary selection set variable, set it to nil.<br/><br/>大意是:选择集会消耗 AutoCAD 的临时文件容量。所以 AutoCAD 限制最多 128 个活跃的选择集。如果达到了这个限度,就不能再创建新的选择集了,所有新的 ssget 调用都会返回 nil。要关闭不需要的选择集,将选择集变量设置为 nil 即可。<br/><br/>楼主可能将选择集都存入了全局变量中,他们不能被系统自动释放而累计到最大限度吧<br/><br/>不知道如果将选择集存放在函数局部变量中,函数调用结束时,选择集会不会被自动被释放呢?<br/> (setq ss(ssadd ss))
页:
[1]