返回meshgeom或sfmesh对象构成的面的数量。
语法
int4 ST_NumPatches(meshgeom geom);
int4 ST_NumPatches(sfmesh sfmeshObject);
参数
参数名称 | 描述 |
---|---|
geom | meshgeom对象。 |
sfmeshObject | sfmesh对象。 |
描述
返回meshgeom或sfmesh对象构成的面的数量。
示例
select ST_NumPatches('MESHGEOM(PATCH(INDEXSURFACE(VERTEX(0 0 2,0 10 3,10 10 1,10 0 1), INDEX((0,1,2),(1,2,3)))))'::meshgeom);
---------------
2