Skip to content

Commit

Permalink
fix(g-canvas): bbox calculation should be correct for path when angle…
Browse files Browse the repository at this point in the history
… is null, 0 and PI, close #254
  • Loading branch information
dengfuping committed Nov 20, 2019
1 parent 250f54d commit 5a02d10
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 12 deletions.
13 changes: 8 additions & 5 deletions packages/g-canvas/src/util/path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import getArcParams from './arc-params';
import QuadUtil from '@antv/g-math/lib/quadratic';
import CubicUtil from '@antv/g-math/lib/cubic';
import EllipseArcUtil from '@antv/g-math/lib/arc';
import { getBBoxByArray } from '@antv/g-math/lib/util';
import { inBox } from './util';
import inLine from './in-stroke/line';
import inArc from './in-stroke/arc';
Expand All @@ -30,9 +29,9 @@ function hasArc(path) {

function getSegments(path) {
const segments = [];
let currentPoint = [0, 0]; // 当前图形
let currentPoint = null; // 当前图形
let nextParams = null; // 下一节点的 path 参数
let startMovePoint = [0, 0]; // 开始 M 的点,可能会有多个
let startMovePoint = null; // 开始 M 的点,可能会有多个
let lastStartMovePointIndex = 0; // 最近一个开始点 M 的索引
const count = path.length;
for (let i = 0; i < count; i++) {
Expand Down Expand Up @@ -188,8 +187,12 @@ function getExtraFromSegmentWithAngle(segment, lineWidth) {
const currentAngle = Math.acos(
(currentAndPre + currentAndNext - preAndNext) / (2 * Math.sqrt(currentAndPre) * Math.sqrt(currentAndNext))
);
if (Math.sin(currentAngle) === 0) {
return 0;
// 夹角为空、 0 或 PI 时,不需要计算夹角处的额外宽度
if (!currentAngle || Math.sin(currentAngle) === 0) {
return {
xExtra: 0,
yExtra: 0,
};
}
let xAngle = Math.abs(Math.atan2(nextPoint[1] - currentPoint[1], nextPoint[0] - currentPoint[0]));
let yAngle = Math.abs(Math.atan2(nextPoint[0] - currentPoint[0], nextPoint[1] - currentPoint[1]));
Expand Down
8 changes: 6 additions & 2 deletions packages/g-canvas/tests/bugs/issue-210-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const dom = document.createElement('div');
document.body.appendChild(dom);
dom.id = 'c1';

describe('#187', () => {
describe('#210', () => {
const canvas = new Canvas({
container: dom,
width: 500,
Expand All @@ -15,7 +15,11 @@ describe('#187', () => {
it('bbox calculation should ignore NaN of path', () => {
const path = canvas.addShape('path', {
attrs: {
path: [['M', 100, 100], ['L', 200, 200], ['L', 300, NaN]],
path: [
['M', 100, 100],
['L', 200, 200],
['L', 300, NaN],
],
stroke: 'red',
},
});
Expand Down
4 changes: 2 additions & 2 deletions packages/g-canvas/tests/bugs/issue-232-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ describe('#232', () => {
setTimeout(() => {
bbox = shape.getBBox();
expect(bbox.minX).eqls(72.82280392116971);
expect(bbox.minY).eqls(31.487390015101695);
expect(bbox.maxX).eqls(386.8131061130099);
expect(bbox.minY).eqls(31.711318897448876);
expect(bbox.maxX).eqls(389.8131061130099);
expect(bbox.maxY).eqls(377.36);
done();
}, 600);
Expand Down
10 changes: 8 additions & 2 deletions packages/g-canvas/tests/bugs/issue-252-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ describe('#252', () => {
type: 'path',
attrs: {
lineWidth: 2,
path: [['M', 75, 200], ['L', 75, 100], ['L', 175, 100], ['L', 175, 200], ['L', 75, 200]],
path: [
['M', 75, 200],
['L', 75, 100],
['L', 175, 100],
['L', 175, 200],
['L', 75, 200],
],
stroke: 'red',
},
});
Expand All @@ -31,7 +37,7 @@ describe('#252', () => {
});

// 水平和垂直方向具有凸起角
it.only('bbox calculation for path with prominent angle should be correct', () => {
it('bbox calculation for path with prominent angle should be correct', () => {
const shape = canvas.addShape({
type: 'path',
attrs: {
Expand Down
2 changes: 1 addition & 1 deletion packages/g-canvas/tests/bugs/issue-254-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe('#254', () => {
height: 600,
});

it('bbox calculation for path should be correct when angle is 0 and π', () => {
it('bbox calculation for path should be correct when angle is null, 0 and π', () => {
const shape = canvas.addShape({
type: 'path',
attrs: {
Expand Down

0 comments on commit 5a02d10

Please sign in to comment.