You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
827 B
28 lines
827 B
export default Point;
|
|
/**
|
|
* @classdesc
|
|
* Point geometry.
|
|
*
|
|
* @api
|
|
*/
|
|
declare class Point extends SimpleGeometry {
|
|
/**
|
|
* @param {import("../coordinate.js").Coordinate} coordinates Coordinates.
|
|
* @param {import("./Geometry.js").GeometryLayout} [layout] Layout.
|
|
*/
|
|
constructor(coordinates: import("../coordinate.js").Coordinate, layout?: import("./Geometry.js").GeometryLayout | undefined);
|
|
/**
|
|
* Make a complete copy of the geometry.
|
|
* @return {!Point} Clone.
|
|
* @api
|
|
*/
|
|
clone(): Point;
|
|
/**
|
|
* Return the coordinate of the point.
|
|
* @return {import("../coordinate.js").Coordinate} Coordinates.
|
|
* @api
|
|
*/
|
|
getCoordinates(): import("../coordinate.js").Coordinate;
|
|
}
|
|
import SimpleGeometry from "./SimpleGeometry.js";
|
|
//# sourceMappingURL=Point.d.ts.map
|