int width = (int) Math.round(cell.getGeometry().getWidth());
int height = (int) Math.round(cell.getGeometry().getHeight());
VertexExt ve = new VertexExt(cell.getGeometry().getPoint(), width, height);
sv.setVertexext(ve);
sv.setProperty("id", cell.getId());
sg.addVertex(sv);
vertexes.put(cell, sv);
}
}
for (Object obj : graph.getChildEdges(parent)) {
if (obj instanceof mxCell) {