Posso fazer coisas assim no tikz, mas como definiria \wd
a largura da forma?
\makeatletter
\pgfdeclareshape{myshape}{%
\inheritsavedanchors[from=rectangle]%
\inheritanchorborder[from=rectangle]%
\inheritanchor[from=rectangle]{center}%
%
\backgroundpath{%
\southwest \pgf@xa=\pgf@x \pgf@ya=\pgf@y
\northeast \pgf@xb=\pgf@x \pgf@yb=\pgf@y
\pgfpathmoveto{\pgfpoint{\pgf@xa+0.5\wd}{\pgf@ya}}
\pgfpathlineto{\pgfpoint{\pgf@xb}{\pgf@ya}}
}%
}
\makeatother
Responder1
Hmm, isso parece funcionar: posso adicionar as coordenadas do ponto nordeste à negação do ponto sudoeste.
\newdimen{\pgf@dx}
\pgfextractx{\pgf@dx}{\pgfpointadd{\northeast}{\pgfpointscale{-1}{\southwest}}}
Responder2
A forma oficial de obter a largura é a seguinte
\southwest% \pgf@xa=\pgf@x% \northeast% \advance\pgf@x by-\pgf@xa%
Estou ligando para este oficial porque você pode ver na pgfmoduleshapes.code.tex
linha 1036-1040
Para obter a âncora norte, o caminho mais curto é
\southwest% \pgf@xa=.5\pgf@x% \northeast% \advance\pgf@xa by.5\pgf@x%