本文整理了Java中prefuse.Visualization.invalidate()
方法的一些代码示例,展示了Visualization.invalidate()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Visualization.invalidate()
方法的具体详情如下:
包路径:prefuse.Visualization
类名称:Visualization
方法名:invalidate
[英]Invalidate the bounds of all VisualItems in the given group. This will cause the bounds to be recomputed for all items upon the next redraw.
[中]使给定组中所有Visualitem的边界无效。这将导致在下次重画时重新计算所有项目的边界。
代码示例来源:origin: de.sciss/prefuse-core
/**
* Invalidate the bounds of all VisualItems in this visualization. This
* will cause the bounds to be recomputed for all items upon the next
* redraw.
*/
public void invalidateAll() {
invalidate(ALL_ITEMS);
}
代码示例来源:origin: org.qi4j.tool/org.qi4j.tool.envisage
@Override
public void run()
{
if( isInProgress() )
{
return;
}
// perform layout
m_vis.invalidate( GRAPH_NODES );
activity = m_vis.run( LAYOUT_ACTION );
}
内容来源于网络,如有侵权,请联系作者删除!