theta.d.ts 471 B

123456789101112131415
  1. import { CoordinateComponent as CC } from '../runtime';
  2. import { ThetaCoordinate } from '../spec';
  3. export type ThetaOptions = ThetaCoordinate;
  4. export declare const getThetaOptions: (options?: ThetaOptions) => {
  5. type?: "theta";
  6. startAngle: number;
  7. endAngle: number;
  8. innerRadius: number;
  9. outerRadius: number;
  10. transform?: import("../spec").CoordinateTransform[];
  11. };
  12. /**
  13. * Theta = Transpose + Polar.
  14. */
  15. export declare const Theta: CC<ThetaOptions>;