| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 | 
/** Licensed to the Apache Software Foundation (ASF) under one* or more contributor license agreements.  See the NOTICE file* distributed with this work for additional information* regarding copyright ownership.  The ASF licenses this file* to you under the Apache License, Version 2.0 (the* "License"); you may not use this file except in compliance* with the License.  You may obtain a copy of the License at**   http://www.apache.org/licenses/LICENSE-2.0** Unless required by applicable law or agreed to in writing,* software distributed under the License is distributed on an* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY* KIND, either express or implied.  See the License for the* specific language governing permissions and limitations* under the License.*/var RadiusAxis = require("./RadiusAxis");var AngleAxis = require("./AngleAxis");/** Licensed to the Apache Software Foundation (ASF) under one* or more contributor license agreements.  See the NOTICE file* distributed with this work for additional information* regarding copyright ownership.  The ASF licenses this file* to you under the Apache License, Version 2.0 (the* "License"); you may not use this file except in compliance* with the License.  You may obtain a copy of the License at**   http://www.apache.org/licenses/LICENSE-2.0** Unless required by applicable law or agreed to in writing,* software distributed under the License is distributed on an* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY* KIND, either express or implied.  See the License for the* specific language governing permissions and limitations* under the License.*//** * @module echarts/coord/polar/Polar *//** * @alias {module:echarts/coord/polar/Polar} * @constructor * @param {string} name */var Polar = function (name) {  /**   * @type {string}   */  this.name = name || '';  /**   * x of polar center   * @type {number}   */  this.cx = 0;  /**   * y of polar center   * @type {number}   */  this.cy = 0;  /**   * @type {module:echarts/coord/polar/RadiusAxis}   * @private   */  this._radiusAxis = new RadiusAxis();  /**   * @type {module:echarts/coord/polar/AngleAxis}   * @private   */  this._angleAxis = new AngleAxis();  this._radiusAxis.polar = this._angleAxis.polar = this;};Polar.prototype = {  type: 'polar',  axisPointerEnabled: true,  constructor: Polar,  /**   * @param {Array.<string>}   * @readOnly   */  dimensions: ['radius', 'angle'],  /**   * @type {module:echarts/coord/PolarModel}   */  model: null,  /**   * If contain coord   * @param {Array.<number>} point   * @return {boolean}   */  containPoint: function (point) {    var coord = this.pointToCoord(point);    return this._radiusAxis.contain(coord[0]) && this._angleAxis.contain(coord[1]);  },  /**   * If contain data   * @param {Array.<number>} data   * @return {boolean}   */  containData: function (data) {    return this._radiusAxis.containData(data[0]) && this._angleAxis.containData(data[1]);  },  /**   * @param {string} dim   * @return {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis}   */  getAxis: function (dim) {    return this['_' + dim + 'Axis'];  },  /**   * @return {Array.<module:echarts/coord/Axis>}   */  getAxes: function () {    return [this._radiusAxis, this._angleAxis];  },  /**   * Get axes by type of scale   * @param {string} scaleType   * @return {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis}   */  getAxesByScale: function (scaleType) {    var axes = [];    var angleAxis = this._angleAxis;    var radiusAxis = this._radiusAxis;    angleAxis.scale.type === scaleType && axes.push(angleAxis);    radiusAxis.scale.type === scaleType && axes.push(radiusAxis);    return axes;  },  /**   * @return {module:echarts/coord/polar/AngleAxis}   */  getAngleAxis: function () {    return this._angleAxis;  },  /**   * @return {module:echarts/coord/polar/RadiusAxis}   */  getRadiusAxis: function () {    return this._radiusAxis;  },  /**   * @param {module:echarts/coord/polar/Axis}   * @return {module:echarts/coord/polar/Axis}   */  getOtherAxis: function (axis) {    var angleAxis = this._angleAxis;    return axis === angleAxis ? this._radiusAxis : angleAxis;  },  /**   * Base axis will be used on stacking.   *   * @return {module:echarts/coord/polar/Axis}   */  getBaseAxis: function () {    return this.getAxesByScale('ordinal')[0] || this.getAxesByScale('time')[0] || this.getAngleAxis();  },  /**   * @param {string} [dim] 'radius' or 'angle' or 'auto' or null/undefined   * @return {Object} {baseAxes: [], otherAxes: []}   */  getTooltipAxes: function (dim) {    var baseAxis = dim != null && dim !== 'auto' ? this.getAxis(dim) : this.getBaseAxis();    return {      baseAxes: [baseAxis],      otherAxes: [this.getOtherAxis(baseAxis)]    };  },  /**   * Convert a single data item to (x, y) point.   * Parameter data is an array which the first element is radius and the second is angle   * @param {Array.<number>} data   * @param {boolean} [clamp=false]   * @return {Array.<number>}   */  dataToPoint: function (data, clamp) {    return this.coordToPoint([this._radiusAxis.dataToRadius(data[0], clamp), this._angleAxis.dataToAngle(data[1], clamp)]);  },  /**   * Convert a (x, y) point to data   * @param {Array.<number>} point   * @param {boolean} [clamp=false]   * @return {Array.<number>}   */  pointToData: function (point, clamp) {    var coord = this.pointToCoord(point);    return [this._radiusAxis.radiusToData(coord[0], clamp), this._angleAxis.angleToData(coord[1], clamp)];  },  /**   * Convert a (x, y) point to (radius, angle) coord   * @param {Array.<number>} point   * @return {Array.<number>}   */  pointToCoord: function (point) {    var dx = point[0] - this.cx;    var dy = point[1] - this.cy;    var angleAxis = this.getAngleAxis();    var extent = angleAxis.getExtent();    var minAngle = Math.min(extent[0], extent[1]);    var maxAngle = Math.max(extent[0], extent[1]); // Fix fixed extent in polarCreator    // FIXME    angleAxis.inverse ? minAngle = maxAngle - 360 : maxAngle = minAngle + 360;    var radius = Math.sqrt(dx * dx + dy * dy);    dx /= radius;    dy /= radius;    var radian = Math.atan2(-dy, dx) / Math.PI * 180; // move to angleExtent    var dir = radian < minAngle ? 1 : -1;    while (radian < minAngle || radian > maxAngle) {      radian += dir * 360;    }    return [radius, radian];  },  /**   * Convert a (radius, angle) coord to (x, y) point   * @param {Array.<number>} coord   * @return {Array.<number>}   */  coordToPoint: function (coord) {    var radius = coord[0];    var radian = coord[1] / 180 * Math.PI;    var x = Math.cos(radian) * radius + this.cx; // Inverse the y    var y = -Math.sin(radian) * radius + this.cy;    return [x, y];  },  /**   * Get ring area of cartesian.   * Area will have a contain function to determine if a point is in the coordinate system.   * @return {Ring}   */  getArea: function () {    var angleAxis = this.getAngleAxis();    var radiusAxis = this.getRadiusAxis();    var radiusExtent = radiusAxis.getExtent().slice();    radiusExtent[0] > radiusExtent[1] && radiusExtent.reverse();    var angleExtent = angleAxis.getExtent();    var RADIAN = Math.PI / 180;    return {      cx: this.cx,      cy: this.cy,      r0: radiusExtent[0],      r: radiusExtent[1],      startAngle: -angleExtent[0] * RADIAN,      endAngle: -angleExtent[1] * RADIAN,      clockwise: angleAxis.inverse,      contain: function (x, y) {        // It's a ring shape.        // Start angle and end angle don't matter        var dx = x - this.cx;        var dy = y - this.cy;        var d2 = dx * dx + dy * dy;        var r = this.r;        var r0 = this.r0;        return d2 <= r * r && d2 >= r0 * r0;      }    };  }};var _default = Polar;module.exports = _default;
 |