计算三维模型的表面积。

语法

float8 ST_3DArea(meshgeom geom);
float8 ST_3DArea(sfmesh sfmeshObject);

参数

参数名称描述
geommeshgeom对象
sfmeshObjectsfmesh对象。

描述

  • 计算sfmesh或meshgeom的三维表面积。
  • point、linestring的表面积为0。
  • 如果geom参数非法,则返回值为NULL。

示例

SELECT ST_3DArea('MESHGEOM(PATCH(INDEXSURFACE  Z(VERTEX(0 0 0,0 10 0,0 0 10,10 0  0), INDEX((0,1,2),(1,0,3)))))'::meshgeom);

-----------
       100