My question
I am trying to make an equal circled of the same size as \oplus or \otimes, etc.
I tried to use the solution provided here :
However, the size of the operators are not the same.
I used as preamble :
\makeatletter
\newcommand\incircbin
{%
\mathpalette\@incircbin
}
\newcommand\@incircbin[2]
{%
\mathbin%
{%
\ooalign{\hidewidth$#1#2$\hidewidth\crcr$#1\bigcirc$}%
}%
}
\newcommand{\oeq}{\incircbin{=}}
\makeatother
And, inside the document itself :
$\oeq$, $\oplus$, $\otimes$
Which is displayed as follow :

As you can notice, the operator \oeq is bigger than the others. Is there a way to get the exact size used by $\oplus$ or $\otimes$ ? Please note that I would rather keep the compilation with pdflatex.
Thank you in advance for any help you may provide.
Minimal working example
\documentclass[10pt,a4paper]{article}
\makeatletter
\newcommand\incircbin
{%
\mathpalette\@incircbin
}
\newcommand\@incircbin[2]
{%
\mathbin%
{%
\ooalign{\hidewidth$#1#2$\hidewidth\crcr$#1\bigcirc$}%
}%
}
\newcommand{\oeq}{\incircbin{=}}
\makeatother
\begin{document}
\Huge $\oeq$, $\oplus$, $\otimes$
\end{document}

