helix.js 319 B

1234567891011
  1. /**
  2. * Helix
  3. */
  4. export const Helix = ({ startAngle = 0, endAngle = Math.PI * 6, innerRadius = 0, outerRadius = 1, }) => [
  5. ['translate', 0.5, 0.5],
  6. ['reflect.y'],
  7. ['translate', -0.5, -0.5],
  8. ['helix', startAngle, endAngle, innerRadius, outerRadius],
  9. ];
  10. Helix.props = {};
  11. //# sourceMappingURL=helix.js.map