大家给看看ssget的用法是否正确
www.dimcax.com
大家给看看ssget的用法是否正确
有许多横断面,我现在要获得某一断面的数据,即(0."text") (0."line"),写了几句,提示列表有错,不知是什么什么原因
(setq textlin
(ssget "x" '((-4 . "<and")
(list (cons 1 "dik245")
(cons 0 "text")
)
(list (cons 1 "400")
(cons 0 "text"))
(list (cons 0 "line"))
(-4 . "and>"))
)
)
d
(ssget "x" (list '(-4 . "<or")
'(-4 . "<and") (cons 0 "text") (cons 1 "dik245") '(-4 . "and>")
'(-4 . "<and") (cons 0 "text") (cons 1 "400") '(-4 . "and>")
'(0 . "line")
'(-4 . "or>")
) )
d
这样没有达到我的要求,所求出的线图元整个图的,我是想求出每个断面的text和这个断面的最大和最小x值
d
能否分别获取每个断面的图元信息?
d