mh-two-thousand-and-two
2024-03-25 b8c93990f3fa5e50a8aca16bdc9c2758168aa0fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
 * 玫瑰线
 * @module zrender/graphic/shape/Rose
 */
 
import Path, { PathProps } from '../Path';
 
const sin = Math.sin;
const cos = Math.cos;
const radian = Math.PI / 180;
 
export class RoseShape {
    cx = 0
    cy = 0
    r: number[] = []
    k = 0
    n = 1
}
 
export interface RoseProps extends PathProps {
    shape?: Partial<RoseShape>
}
class Rose extends Path<RoseProps> {
 
    shape: RoseShape
 
    constructor(opts?: RoseProps) {
        super(opts);
    }
 
    getDefaultStyle() {
        return {
            stroke: '#000',
            fill: null as string
        };
    }
 
    getDefaultShape() {
        return new RoseShape();
    }
 
 
    buildPath(ctx: CanvasRenderingContext2D, shape: RoseShape) {
        const R = shape.r;
        const k = shape.k;
        const n = shape.n;
        const x0 = shape.cx;
        const y0 = shape.cy;
        let x;
        let y;
        let r;
 
 
        ctx.moveTo(x0, y0);
 
        for (let i = 0, len = R.length; i < len; i++) {
            r = R[i];
 
            for (let j = 0; j <= 360 * n; j++) {
                x = r
                        * sin(k / n * j % 360 * radian)
                        * cos(j * radian)
                        + x0;
                y = r
                        * sin(k / n * j % 360 * radian)
                        * sin(j * radian)
                        + y0;
                ctx.lineTo(x, y);
            }
        }
    }
}
 
Rose.prototype.type = 'rose';
 
export default Rose;