如何使用 JUNG 的注释系统注释我的图形?



我似乎找不到任何关于注释我的荣格图的文档。我拼凑的最多的是:

AnnotationRenderer renderer = new AnnotationRenderer();
AnnotationPaintable annotate = new AnnotationPaintable(viewer.getRenderContext(), renderer);
Shape square = new Rectangle(0, 0, 50, 50);
Annotation<Shape> a = new Annotation<Shape>(square, Annotation.Layer.UPPER, null, true,
                new Point2D.Double(0, 0));
annotate.add(a);

我该如何利用这一点并开始在 AnnotationPaintable 对象中绘制实际的注释?

答案是将其添加到可视化查看器中:

viewer.addPostRenderPaintable(...)

最新更新