angleBetweenDiagonals method
Calculates the angle between the diagonal and the sides of a square.
The angle between the diagonals of a square is always 45 degrees, or π/4 radians.
Implementation
Angle angleBetweenDiagonals() {
return Angle(rad: atan(1));
}