Schema
Owner
postgres
Descriptions
args: geomA, a, b, d, e, xoff, yoff - Apply a 3d affine transformation to a geometry.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
sql |
Parameters |
public.geometry double precision double precision double precision double precision double precision double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_affine (
public.geometry,
double precision,
double precision,
double precision,
double precision,
double precision,
double precision
)
RETURNS public.geometry AS
$span$
SELECT public.ST_Affine($1, $2, $3, 0, $4, $5, 0, 0, 0, 1, $6, $7, 0)
$span$
LANGUAGE 'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_affine(public.geometry, double precision, double precision, double precision, double precision, double precision, double precision)
IS 'args: geomA, a, b, d, e, xoff, yoff - Apply a 3d affine transformation to a geometry.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |