语法
- float size(array)
参数
- array -(float[]、bool[]、string[])请求大小的数组。
返回
array 中的元素数。
相关内容
示例
元素数
const a = [1:4]
const b = [1,2 ; 3,4]
Example --> print(size(a)) // 4
print(size(b)) // 4
组件
const edgeLengths = comp(e) { all : scope.sx }
const faceAreas = comp(f) { all : geometry.area() }
Example --> print(edgeLengths) // (4)[2,2,2,2]
print(faceAreas) // (1)[4]
print(size(edgeLengths)) // 4
print(size(faceAreas)) // 1
示例
元素数
const a = [1:4]
const b = [1,2 ; 3,4]
Example --> print(size(a)) // 4
print(size(b)) // 4
组件
const edgeLengths = comp(e) { all : scope.sx }
const faceAreas = comp(f) { all : geometry.area() }
Example --> print(edgeLengths) // (4)[2,2,2,2]
print(faceAreas) // (1)[4]
print(size(edgeLengths)) // 4
print(size(faceAreas)) // 1