@antv/g2
Version:
the Grammar of Graphics in Javascript
11 lines • 319 B
JavaScript
/**
* Helix
*/
export const Helix = ({ startAngle = 0, endAngle = Math.PI * 6, innerRadius = 0, outerRadius = 1, }) => [
['translate', 0.5, 0.5],
['reflect.y'],
['translate', -0.5, -0.5],
['helix', startAngle, endAngle, innerRadius, outerRadius],
];
Helix.props = {};
//# sourceMappingURL=helix.js.map