Name

CG_RotateX — Rotates a geometry around the X-axis by a given angle.

Übersicht

geometry CG_RotateX(geometry geom, float8 angle);

Beschreibung

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

Availability: 3.6.0 - requires SFCGAL >= 2.0.0

Diese Methode benötigt ein SFCGAL-Backend.

Diese Funktion unterstützt 3d und lässt den Z-Index nicht fallen.

Beispiele

Code
SELECT CG_RotateX('POINT(0 1 0)', pi()/2);
Ausgabe von Rastern
POINT Z (0 6.123233995736766e-17 1)
Figure
Geometry figure for visual-cg-rotatex-01