Name

CG_RotateZ — Rotates a geometry around the Z-axis by a given angle.

Synopsis

geometry CG_RotateZ(geometry geom, float8 angle);

Descrizione

Rotates the input geometry geom by angle radians around the Z-axis.

Availability: 3.6.0 - requires SFCGAL >= 2.0.0

Questo metodo richiede il backend SFCGAL.

Questa funzione supporta il 3d e non distrugge gli z-index.

Esempi

SELECT ST_AsText(CG_RotateZ('POINT(1 0 0)', pi()/2));
-- Result: POINT(0 1 0)