I've made a script which converts a latex code into an animation, but the thing that is rendered readjusts it's sizes for best fitting in the frame, I want to turn this off as the animation flickers when rendered. Here is the latex Code:
\documentclass[aspectratio=169]{beamer}
\usepackage{tikz}
\usepackage{tkz-euclide}
\setbeamertemplate{navigation symbols}{}
\setlength{\parindent}{0pt}
\begin{document}
\begin{frame}
\begin{center}
\begin{tikzpicture}[scale=0.7]
\tkzDefPoint(2,0){A}\tkzDefPoint(0,0){O}
\tkzDefShiftPoint[A](31:5){B}
\tkzDefShiftPoint[A](*#type-g 1:120 20:3600#* :5){C}
\tkzDrawPoints(A,B,C)
\tkzDrawSegments[color = red, line width = 1pt](A,B A,C)
\tkzProtractor[scale = 1](A,B)
\end{tikzpicture}
\end{center}
\end{frame}
\end{document}
Here, the *#type-g 1:120 20:3600#* says to tween the value at this place from 20 to 3600 within 1 to 120 frames of the animation.



*#type-g 1:120 20:3600#*this is not to be written. Replace this with a number. I use texlive in ArchLinux. Thanks, I will try. – Darshan Koirala Jul 27 '21 at 15:02