UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

15 lines 444 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Helix = void 0; /** * Helix */ 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], ]; exports.Helix = Helix; exports.Helix.props = {}; //# sourceMappingURL=helix.js.map