Name

CG_3DIntersects — Tests if two 3D geometries intersect

Synopsis

boolean CG_3DIntersects( geometry geomA , geometry geomB );

描述

Tests if two 3D geometries intersect. 3D geometries intersect if they have any point in common in the three-dimensional space.

Performed by the SFCGAL module

[Note]

注意:这是返回布尔值而不是整数的“允许”版本。

可用性:3.5.0

该方法需要SFCGAL后端。

此函数支持三角形和不规则三角网面 (TIN)。

几何示例

SELECT CG_3DIntersects('POINT(1.2 0.1 0)','POLYHEDRALSURFACE(((0 0 0,0.5 0.5 0,1 0 0,1 1 0,0 1 0,0 0 0)),((1 0 0,2 0 0,2 1 0,1 1 0,1 0 0),(1.2 0.2 0,1.2 0.8 0,1.8 0.8 0,1.8 0.2 0,1.2 0.2 0)))');
        cg_3dintersects
        ---------------
        t
        (1 row)