drawLargeSizedStar method
Draw a larger Star using a consistent size. Its size will depend on the current animation state. If it is not animated, the Star will be rendered smaller.
Implementation
void drawLargeSizedStar(Canvas canvas, Star star, Paint paint) {
canvas.drawCircle(star.translatedOffset, (star.radius * 1.5), paint);
}