判断scene与meshgeom是否相交。
语法
bool ST_Intersects(scene sc, meshgeom geom);参数
| 参数名称 | 描述 |
|---|---|
| sc | scene对象。 |
| geom | meshgeom对象。 |
描述
判断scene与meshgeom是否相交。
示例
SELECT ST_Intersects(ST_3DSphere(1,1), 'Mesh(IndexSurface(Vertex(0 0 0, 1 0 0, 1 1 0), Index((0,1,2))))'::meshgeom);
--------
t