返回sfmesh对象中材质的数量。

语法

int4 ST_NumMaterials(sfmesh sfmeshObject);

参数

参数名称描述
sfmeshObjectsfmesh对象。

描述

返回sfmesh对象中材质的数量。

示例

select ST_NumMaterials('{   "meshgeoms" : ["MESHGEOM(PATCH(TRIANGLESTRIP(0 0,0 10,10 10,10 0)))"],  "materials":[{"type":"db", "attributes": {"schema":"public","table":"t_material","column":"the_material","key":"num=1"}} ], "primitives" : [  {"meshgeom": 0, "material" : 0}],  "nodes" : [    {"primitive" : 0} ] }'::sfmesh);

------------------------------
 1