[Tex/LaTex] Symbol: Center of Mass (dowelpin)

symbols

Does anyone know of the symbol used for the center of mass in physics? Typically it is a circle with two quadrants shaded in. Unfortunately I can't find this in the standard LaTeX symbols PDF or on Detexify.

Is there a predefined command for this symbol or some other way I could get it?

Best Answer

I don't think it's available as a proper symbol, but you could use TikZ to draw it. By using the units em or ex, the symbol will scale corresponding to the surrounding text.

dowel pin / center of mass / BMW symbol

\documentclass{article}

\usepackage{tikz}

\newcommand\centerofmass{%
    \tikz[radius=0.4em] {%
        \fill (0,0) -- ++(0.4em,0) arc [start angle=0,end angle=90] -- ++(0,-0.8em) arc [start angle=270, end angle=180];%
        \draw (0,0) circle;%
    }%
}

\begin{document}

Center of Mass: \centerofmass

\Huge It scales! \centerofmass

\end{document}