This website allows you to draw your own fourier epicycle drawings, either by uploading an svg or by mouse. I had quite a bit fun creating this, so at the end there is a brief explanation trying to give the reader some mathematical intuition as to how revolving circles and the fourier transform are connected.
My motivation for this website is to try and fill a gap left by other work (mentioned at the end), and allow users to upload and draw their own fourier epicycles. The current implementation is far from perfect, but I think it's a good start.
Upload an image and see its epicycles.
For fast and clear drawings upload SVGs that are less than 50kb.
Unfortunately at this stage, SVGs that are large and have very complicated paths require a manual tinkering of parameters.
Draw your own below!
What is a fourier series?
The fourier series (or inverse fourier transform) of a complex-valued function
In our case,
Complex numbers can be thought of as vectors as their real and imaginary components give them both magnitude and direction. Additionally from euler's formula every complex number in polar form lies on some circle centered about the origin. For example:
So therefore, since the fourier series expresses a function as a sum of complex sinusoids (these are also functions remember), and the outputs of these functions are entirely described by circles in the complex plane, means we can represent each complex sinusoid by a circle and a revolving vector. Hence, we can represent a function as a sum of revolving circles and vectors. Connected them tip to toe (i.e. adding them together) to find the final drawing.
Hopefully at this point you have some intuition as to why revolving circles can be used to represent waves. If not here is a neat animation.
What do those symbols mean?
is a complex valued function of real variable. When implementing the discrete fourier transform on computers, will be an array of complex numbers, where corresponds to the complex number at index . can also be interpreted as the point of the function/drawing at time . the fourier coefficient, is a complex number which encodes the amplitude(radius) and phase (initial position), of a vector on a circle of radius equivalent to length. , is a complex function which can be interperated as a revolving vector, whose frequency is given by . i.e. Every unit of time the vector has done full rotations. , means that we are decomposing our arbitrary function into a sum of harmonic sinusoids with frequencies in the range . , is the period of the function, i.e. the number of sample points or time considered. e.g in the equation above.
What is the fourier transform?
The fourier transform is used to calculate the fourier coefficents (
Anyways this site leaves the maths there (see the end of the page for more resources), instead have some fun and draw or upload your own drawings.
Understanding the fourier transform
For those curious, these resources are good starting points in understanding the fourier transform and the drawing of epicycles. I recommend using the resources in the order presented.
3Blue1Brown - fourier series great, like really great explanation.
3Blue1Brown - fourier transform also great.
Wikepedia - fourier series well written and covers the math decently well.
Wikepedia - fourier transform ------------------------ | | ------------------------
'An interactive introduction to the fourier transform' this article really helped me a lot. Gives excellent animations with explanations.
The Coding Train gives a nice guide on how you can draw your own epicycles.
I have open sourced the code and you can find it on my github.