pi.js 417 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.piDocs = void 0;
  6. var piDocs = {
  7. name: 'pi',
  8. category: 'Constants',
  9. syntax: ['pi'],
  10. description: 'The number pi is a mathematical constant that is the ratio of a circle\'s circumference to its diameter, and is approximately equal to 3.14159',
  11. examples: ['pi', 'sin(pi/2)'],
  12. seealso: ['tau']
  13. };
  14. exports.piDocs = piDocs;