本文整理了Java中java.awt.Polygon.invalidate()
方法的一些代码示例,展示了Polygon.invalidate()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Polygon.invalidate()
方法的具体详情如下:
包路径:java.awt.Polygon
类名称:Polygon
方法名:invalidate
[英]Invalidates or flushes any internally-cached data that depends on the vertex coordinates of this Polygon
. This method should be called after any direct manipulation of the coordinates in the xpoints
or ypoints
arrays to avoid inconsistent results from methods such as getBounds
or contains
that might cache data from earlier computations relating to the vertex coordinates.
[中]使依赖于此[$0$]的顶点坐标的任何内部缓存数据无效或刷新。直接操作xpoints
或ypoints
数组中的坐标后,应调用此方法,以避免getBounds
或contains
等可能缓存与顶点坐标相关的早期计算数据的方法产生不一致的结果。
代码示例来源:origin: chewiebug/GCViewer
clippedPolygon.invalidate();
代码示例来源:origin: com.github.meirfaraj/gcAnalyser-lib
this.clippedPolygon.invalidate();
代码示例来源:origin: com.mgmtp.gcviewer/gcviewer
clippedPolygon.invalidate();
内容来源于网络,如有侵权,请联系作者删除!