Recently I have been mailing with a lector on the institute of Niels Bohr in Copenhagen regarding a picture written in LaTeX of two inertialframes. He made a figure that looks like this:

He used the pstricks package, and he sent me the code. Though, my LaTeX couldn't run with the code, so I tried to make the picture using tikzpicture. I rewrote this code:
\begin{figure}
\begin{center}
\psset{unit=8.5mm}
\begin{pspicture}(-3,-2.4)(14,3.5)
\psset{linewidth=0.7pt}
\psset{arrowsize=6pt}
%
\rput(0,0){
\psline[linewidth=1pt]{->}(0,0)(3.3,0) \rput(3.3,-0.5){$x$}
\psline[linewidth=1pt]{->}(0,0)(0,3.3) \rput(-0.5,3.2){$y$}
\psline[linewidth=1pt]{->}(0,0)(-2,-1.7) \rput(-2.1,-2.1){$z$}
\rput[l](0.5,3.3){\textsf{S}}
}
%
\rput(7,0){
\psline[linewidth=1pt]{->}(0,0)(3.3,0) \rput(3.3,-0.5){$x^\prime$}
\psline[linewidth=1pt]{->}(0,0)(0,3.3) \rput(-0.5,3.2){$y^\prime$}
\psline[linewidth=1pt]{->}(0,0)(-2,-1.7) \rput(-2.1,-2.1){$z^\prime$}
\rput[l](0.5,3.3){\textsf{S}$^\prime$}
}
%
\psline{->}(5.5,2.2)(8.5,2.2) \rput(8.8,2.2){$v$}
\rput(11,2.2){\scalebox{2}{\ding{90}}}
\pscircle[linestyle=none,fillstyle=solid](11,2.2){0.2}
\psdots[dotsize=4pt](11,2.2)
\rput[c](11,3){\small \textsf{Begivenhed}}
\rput[l](11.7,2.4){\small $(x,\,y,\,z,\,t)$}
\rput[l](11.7,1.8){\small $(x^\prime,\,y^\prime,\,z^\prime,\,t^\prime)$}
\psline{|->}(0.2,1.4)(6.8,1.4) \rput(3.5,1.7){$vt$}
\psline{|->}(7.2,1.4)(11,1.4) \rput(9.1,1.7){$x^\prime$}
\psline{|->}(0.2,0.8)(11,0.8) \rput(5.6,1.1){$x$}
\end{pspicture}
\caption{En begivenhed betragtes fra to referencesystemer i
standardkonfigurationen.}
\label{fig:standardkonfig}
\end{center}
\end{figure}
into this converted code in tikz:
\begin{center}
\begin{tikzpicture}
\coordinate[label= below left:$$] (origo) at (0,0);
\coordinate[label = below left:$$] (origos) at (7,0);
\draw[line width = 1pt, -{Stealth[length=3mm]}] (origo) -- (3.3,0) node[below]{$x$};
\draw[line width = 1pt, -{Stealth[length=3mm]}] (origo) -- (0,3.3) node[left]{$y$};
\draw[line width= 1pt, -{Stealth[length=3mm]}] (origo) -- (-2,-1.7) node[below]{$z$};
\node[] at (0.5,3.3) {\textsf{S}};
\begin{scope}[xshift = 7cm]
\draw[line width = 1pt, -{Stealth[length=3mm]}] (0,0) -- (3.3,0) node[below]{$x'$};
\draw[line width = 1pt, -{Stealth[length=3mm]}] (0,0) -- (0,3.3) node[left]{$y'$};
\draw[line width= 1pt, -{Stealth[length=3mm]}] (0,0) -- (-2,-1.7) node[below]{$z'$};
\node[] at (0.5,3.3) {\textsf{S}$^{\prime}$};
\end{scope}
\draw[-{Stealth[length=3mm]}, line width=0.8pt](5.5,2.2) -- (8.5,2.2) node[right]{$v$};
\fill[black] (11,2.2) circle (4pt);
\node[] at (11,3) {\small \textsf{Begivenhed}};
\node[] at (12.3,2.4) {\small $(t, \, x, \, y, \, z)$};
\node[] at (12.5,1.8) {\small $(t', \, x', \, y', \, z')$};
\draw[|-{Stealth[length=3mm]}, line width=0.8pt] (0.2,1.4) -- (6.8,1.4) node[above] at (3.5,1.4) {$vt$};
\draw[|-{Stealth[length=3mm]}, line width=0.8pt] (7.2,1.4) -- (11,1.4) node[above] at (9.1,1.4) {$x^{\prime}$};
\draw[|-{Stealth[length=3mm]},line width=0.8pt] (0.2,0.8) -- (11,0.8) node[above] at (5.6,0.76) {$x$};
\end{tikzpicture}
\end{center}
The result was this:
Which is almost entirely the same, except for the circle that on the ps-code looks like a sun, but on my code (tikz) is just a dot. Does any of you have an idea of how to create that little thing?
FYI, 'Begivenhed', which is a danish word, means event and is used in special relativity. That little sun is supposed to be an event.



