org.h2gis.h2spatialext.function.spatial.affine_transformations
Class ST_Rotate
java.lang.Object
org.h2gis.h2spatialapi.AbstractFunction
org.h2gis.h2spatialapi.DeterministicScalarFunction
org.h2gis.h2spatialext.function.spatial.affine_transformations.ST_Rotate
- All Implemented Interfaces:
- Function, ScalarFunction
public class ST_Rotate
- extends DeterministicScalarFunction
ST_Rotate rotates a geometry by a given angle (in radians) about the
geometry's center.
- Author:
- Adam Gouge
|
Method Summary |
String |
getJavaStaticMethod()
|
static com.vividsolutions.jts.geom.Geometry |
rotate(com.vividsolutions.jts.geom.Geometry geom,
double theta)
Rotates a geometry by a given angle (in radians) about the center
of the geometry's envelope. |
static com.vividsolutions.jts.geom.Geometry |
rotate(com.vividsolutions.jts.geom.Geometry geom,
double theta,
double x0,
double y0)
Rotates a geometry by a given angle (in radians) about the specified
point at (x0, y0). |
static com.vividsolutions.jts.geom.Geometry |
rotate(com.vividsolutions.jts.geom.Geometry geom,
double theta,
com.vividsolutions.jts.geom.Point point)
Rotates a geometry by a given angle (in radians) about the specified
point. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ST_Rotate
public ST_Rotate()
getJavaStaticMethod
public String getJavaStaticMethod()
rotate
public static com.vividsolutions.jts.geom.Geometry rotate(com.vividsolutions.jts.geom.Geometry geom,
double theta)
- Rotates a geometry by a given angle (in radians) about the center
of the geometry's envelope.
- Parameters:
geom - Geometrytheta - Angle
- Returns:
- The geometry rotated about the center of its envelope
rotate
public static com.vividsolutions.jts.geom.Geometry rotate(com.vividsolutions.jts.geom.Geometry geom,
double theta,
com.vividsolutions.jts.geom.Point point)
- Rotates a geometry by a given angle (in radians) about the specified
point.
- Parameters:
geom - Geometrytheta - Anglepoint - The point about which to rotate
- Returns:
- The geometry rotated by theta about the given point
rotate
public static com.vividsolutions.jts.geom.Geometry rotate(com.vividsolutions.jts.geom.Geometry geom,
double theta,
double x0,
double y0)
- Rotates a geometry by a given angle (in radians) about the specified
point at (x0, y0).
- Parameters:
geom - Geometrytheta - Anglex0 - x-coordinate of point about which to rotatey0 - y-coordinate of point about which to rotate
- Returns:
- The geometry rotated by theta about (x0, y0)
Copyright © 2015 IRSTV CNRS-FR-2488. All Rights Reserved.