判断scene是否在meshgeom内部。
语法
bool ST_Within(scene sc, meshgeom geom);
参数
参数名称 | 描述 |
---|---|
sc | scene对象。 |
geom | meshgeom对象。 |
描述
判断scene是否在meshgeom内部,与ST_Contains为反向等价操作。
- meshgeom不闭合返回false。
- meshgeom为空返回false。
示例
SELECT ST_Within(
ST_3DSphere(0.5,1),
ST_Translate(ST_Extrude('Polygon((-1 -1, 1 -1, 1 1, -1 1, -1 -1))',2), 0, 0, -1));
--------
t