ST_TransScale — Translates a geometry, and then scales it.
geometry ST_TransScale(
bytea
Geometry, double Tx, double Ty, double Tz, double
Xscale, double
Yscale, double
Zscale)
;
geometry ST_TransScale(
bytea
Geometry, double Tx, double Ty, double
Xscale, double
Yscale)
;
Translates a geometry, and then scales it.
Transformation matrix | Equations to transform the vertices |
ST_TransScale (geomA, Tx, Ty, Tz, Xscale,Yscale,Zscale) is an abreviation for the method: ST_Affine(geomA, Xscale, 0, 0, 0, Yscale, 0, 0, 0, Zscale, Tx*Xscale, Ty*Yscale, Tz*Zscale) |
2D | 3D | M |
---|---|---|
OGC SFS for SQL. 1.1 (1999) | OGC SFS for SQL. 1.1.0 (2005) | OGC SFS for SQL. 1.2.0 (2006) | SQL-MM Part 3 |
---|---|---|---|
- | - | - | - |