IAtomContainer selectedAC = selection.getConnectedAtomContainer();
if (selectedAC != null) {
for (IAtom atom : selectedAC.atoms()) {
Point2d p = atom.getPoint2d();
IRenderingElement element;
element = new OvalElement(
p.x, p.y, d, false, selectionColor);
selectionElements.add(element);
}
}
}