标题: 'count' is not a member of 'RMA.openNURBS.On3dpoint' [打印本页] 作者: cecilystt 时间: 2009-7-28 03:48 标题: 'count' is not a member of 'RMA.openNURBS.On3dpoint' how to solve this problem?
'count' is not a member of 'RMA.openNURBS.On3dpoint'
'RMA.OpenNURBS.On3dPoint' cannot be indexed because it has no default property.作者: wudi1212 时间: 2009-7-28 10:09
'RMA.openNURBS.On3dpoint'
这个命令有误么?作者: xuyangen 时间: 2009-7-30 19:57
就是说 count 不是点类中的方法, count 是指,数组中,成员的个数(类似listlength) ,能用它的对象必须是个数组,(即 list 类型)
你可以定义一个点数组(如 "DIM list_pt as new list(of on3dpoint") 则 list_pt 是一个点组,可以用 list_pt.count 得到一个数 ,(即 list_pt 中点的个数)作者: huuuuuub 时间: 2009-8-2 16:18
编程语言的指针吧作者: cecilystt 时间: 2009-8-5 09:40
我是直接COPY的GRASSHOPPER PRIMER第二版上VB scripting的例子啊