Reputation: 115
Upvotes: 0
Views: 1422
Reputation: 8655
To start you off...
x = Sqrt[2^2 + 2^2]/2;
Show[
ParametricPlot[{
{x Cos[t], x Sin[t] + 2},
{x Cos[t] + 2, x Sin[t]},
{x Cos[t], x Sin[t] - 2},
{x Cos[t] - 2, x Sin[t]}}, {t, 0, 2 Pi}],
Graphics[Line[{{2, 0}, {0, 2}}]]]
Upvotes: 2