Considering current code that takes a single center point.
using (DrawingContext drawingContext = this.RenderOpen())
{
drawingContext.DrawEllipse(highlightBrush, _isSelected ? SelectedPen : DeselectedPen, originPoint, radius, radius);
}
Is there a way to draw the shown image possibly with DrawGeometry?