From bb9b227e95aab6cd8752d05a77c8771630e264e0 Mon Sep 17 00:00:00 2001 From: Bryan Cardwell Date: Thu, 15 Aug 2024 15:08:11 -0500 Subject: [PATCH] Create constant-tau.md --- docs/constant-tau | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docs/constant-tau diff --git a/docs/constant-tau b/docs/constant-tau new file mode 100644 index 0000000..60a6607 --- /dev/null +++ b/docs/constant-tau @@ -0,0 +1,19 @@ +# Constant tau + +## Summary + +Implement a constant `math.tau` to hold the tau constant. + +## Motivation + +Currently the value of tau is used in trigonomic calculations through `math.pi * 2`. + +The implementation of tau will simplify equations where otherwise math.pi * 2 may be used. + +## Design + +Define `math.tau` with the value `6.28318530717958647692528676655900577` + +## Drawbacks + +None