CG_3DScaleAroundCenter — Scales a geometry in 3D space around a specified center point.
geometry CG_3DScaleAroundCenter(geometry geom, float8 factorX, float8 factorY, float8 factorZ, float8 centerX, float8 centerY, float8 centerZ);
Scales the input geometry geom by different factors along the X, Y, and Z axes, relative to a specified center point (centerX, centerY, centerZ).
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.
SELECT ST_AsText(CG_3DScaleAroundCenter('POINT(2 2 2)', 0.5, 0.5, 0.5, 1, 1, 1));
-- Result: POINT(1.5 1.5 1.5)