ST_ConstrainedDelaunayTriangles — 返回围绕给定输入几何图元的约束Delaunay三角剖分。
geometry ST_ConstrainedDelaunayTriangles(
geometry g1)
;
返回一个 约束Delaunay三角剖分 围绕输入几何体的顶点。输出是一个罐头。
This method needs SFCGAL backend.
可用性:3.0.0
This function supports 3d and will not drop the z-index.
![]() 两个面的ST_ConstrainedDelaunay三角形
select ST_ConstrainedDelaunayTriangles( ST_Union( 'POLYGON((175 150, 20 40, 50 60, 125 100, 175 150))'::geometry, ST_Buffer('POINT(110 170)'::geometry, 20) ) );
| ![]() ST_DelaunayTriangles 由2个多边形组成。三角形边跨越多边形边界。
select ST_DelaunayTriangles( ST_Union( 'POLYGON((175 150, 20 40, 50 60, 125 100, 175 150))'::geometry, ST_Buffer('POINT(110 170)'::geometry, 20) ) );
|