/** * @module ol/geom/Circle */ import {createOrUpdate, forEachCorner, intersects} from '../extent.js'; import GeometryType from './GeometryType.js'; import SimpleGeometry from './SimpleGeometry.js'; import {deflateCoordinate} from './flat/deflate.js'; /** * @classdesc * Circle geometry. * * @api */ class Circle extends SimpleGeometry { /** * @param {!import("../coordinate.js").Coordinate} center Center. * For internal use, flat coordinates in combination with `opt_layout` and no * `opt_radius` are also accepted. * @param {number=} opt_radius Radius. * @param {import("./GeometryLayout.js").default=} opt_layout Layout. */ constructor(center, opt_radius, opt_layout) { super(); if (opt_layout !== undefined && opt_radius === undefined) { this.setFlatCoordinates(opt_layout, center); } else { const radius = opt_radius ? opt_radius : 0; this.setCenterAndRadius(center, radius, opt_layout); } } /** * Make a complete copy of the geometry. * @return {!Circle} Clone. * @override * @api */ clone() { return new Circle(this.flatCoordinates.slice(), undefined, this.layout); } /** * @inheritDoc */ closestPointXY(x, y, closestPoint, minSquaredDistance) { const flatCoordinates = this.flatCoordinates; const dx = x - flatCoordinates[0]; const dy = y - flatCoordinates[1]; const squaredDistance = dx * dx + dy * dy; if (squaredDistance < minSquaredDistance) { if (squaredDistance === 0) { for (let i = 0; i < this.stride; ++i) { closestPoint[i] = flatCoordinates[i]; } } else { const delta = this.getRadius() / Math.sqrt(squaredDistance); closestPoint[0] = flatCoordinates[0] + delta * dx; closestPoint[1] = flatCoordinates[1] + delta * dy; for (let i = 2; i < this.stride; ++i) { closestPoint[i] = flatCoordinates[i]; } } closestPoint.length = this.stride; return squaredDistance; } else { return minSquaredDistance; } } /** * @inheritDoc */ containsXY(x, y) { const flatCoordinates = this.flatCoordinates; const dx = x - flatCoordinates[0]; const dy = y - flatCoordinates[1]; return dx * dx + dy * dy <= this.getRadiusSquared_(); } /** * Return the center of the circle as {@link module:ol/coordinate~Coordinate coordinate}. * @return {import("../coordinate.js").Coordinate} Center. * @api */ getCenter() { return this.flatCoordinates.slice(0, this.stride); } /** * @inheritDoc */ computeExtent(extent) { const flatCoordinates = this.flatCoordinates; const radius = flatCoordinates[this.stride] - flatCoordinates[0]; return createOrUpdate( flatCoordinates[0] - radius, flatCoordinates[1] - radius, flatCoordinates[0] + radius, flatCoordinates[1] + radius, extent); } /** * Return the radius of the circle. * @return {number} Radius. * @api */ getRadius() { return Math.sqrt(this.getRadiusSquared_()); } /** * @private * @return {number} Radius squared. */ getRadiusSquared_() { const dx = this.flatCoordinates[this.stride] - this.flatCoordinates[0]; const dy = this.flatCoordinates[this.stride + 1] - this.flatCoordinates[1]; return dx * dx + dy * dy; } /** * @inheritDoc * @api */ getType() { return GeometryType.CIRCLE; } /** * @inheritDoc * @api */ intersectsExtent(extent) { const circleExtent = this.getExtent(); if (intersects(extent, circleExtent)) { const center = this.getCenter(); if (extent[0] <= center[0] && extent[2] >= center[0]) { return true; } if (extent[1] <= center[1] && extent[3] >= center[1]) { return true; } return forEachCorner(extent, this.intersectsCoordinate, this); } return false; } /** * Set the center of the circle as {@link module:ol/coordinate~Coordinate coordinate}. * @param {import("../coordinate.js").Coordinate} center Center. * @api */ setCenter(center) { const stride = this.stride; const radius = this.flatCoordinates[stride] - this.flatCoordinates[0]; const flatCoordinates = center.slice(); flatCoordinates[stride] = flatCoordinates[0] + radius; for (let i = 1; i < stride; ++i) { flatCoordinates[stride + i] = center[i]; } this.setFlatCoordinates(this.layout, flatCoordinates); this.changed(); } /** * Set the center (as {@link module:ol/coordinate~Coordinate coordinate}) and the radius (as * number) of the circle. * @param {!import("../coordinate.js").Coordinate} center Center. * @param {number} radius Radius. * @param {import("./GeometryLayout.js").default=} opt_layout Layout. * @api */ setCenterAndRadius(center, radius, opt_layout) { this.setLayout(opt_layout, center, 0); if (!this.flatCoordinates) { this.flatCoordinates = []; } /** @type {Array} */ const flatCoordinates = this.flatCoordinates; let offset = deflateCoordinate( flatCoordinates, 0, center, this.stride); flatCoordinates[offset++] = flatCoordinates[0] + radius; for (let i = 1, ii = this.stride; i < ii; ++i) { flatCoordinates[offset++] = flatCoordinates[i]; } flatCoordinates.length = offset; this.changed(); } /** * @inheritDoc */ getCoordinates() { return null; } /** * @inheritDoc */ setCoordinates(coordinates, opt_layout) {} /** * Set the radius of the circle. The radius is in the units of the projection. * @param {number} radius Radius. * @api */ setRadius(radius) { this.flatCoordinates[this.stride] = this.flatCoordinates[0] + radius; this.changed(); } } /** * Transform each coordinate of the circle from one coordinate reference system * to another. The geometry is modified in place. * If you do not want the geometry modified in place, first clone() it and * then use this function on the clone. * * Internally a circle is currently represented by two points: the center of * the circle `[cx, cy]`, and the point to the right of the circle * `[cx + r, cy]`. This `transform` function just transforms these two points. * So the resulting geometry is also a circle, and that circle does not * correspond to the shape that would be obtained by transforming every point * of the original circle. * * @param {import("../proj.js").ProjectionLike} source The current projection. Can be a * string identifier or a {@link module:ol/proj/Projection~Projection} object. * @param {import("../proj.js").ProjectionLike} destination The desired projection. Can be a * string identifier or a {@link module:ol/proj/Projection~Projection} object. * @return {Circle} This geometry. Note that original geometry is * modified in place. * @function * @api */ Circle.prototype.transform; export default Circle;