Schema
Owner
postgres
Descriptions
args: g1, tolerance, flags - Return a Delaunay triangulation around the given input points.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
g1 public.geometry tolerance double precision = 0.0 flags integer = 0 |
Definition
CREATE OR REPLACE FUNCTION public.st_delaunaytriangles (
g1 public.geometry,
tolerance double precision = 0.0,
flags integer = 0
)
RETURNS public.geometry AS
'$libdir/postgis-2.3', 'ST_DelaunayTriangles'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_delaunaytriangles(g1 public.geometry, tolerance double precision, flags integer)
IS 'args: g1, tolerance, flags - Return a Delaunay triangulation around the given input points.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |