java.awt.Polygon.invalidate()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(0.9k)|赞(0)|评价(0)|浏览(166)

本文整理了Java中java.awt.Polygon.invalidate()方法的一些代码示例,展示了Polygon.invalidate()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Polygon.invalidate()方法的具体详情如下:
包路径:java.awt.Polygon
类名称:Polygon
方法名:invalidate

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$]的顶点坐标的任何内部缓存数据无效或刷新。直接操作xpointsypoints数组中的坐标后,应调用此方法,以避免getBoundscontains等可能缓存与顶点坐标相关的早期计算数据的方法产生不一致的结果。

代码示例

代码示例来源:origin: chewiebug/GCViewer

clippedPolygon.invalidate();

代码示例来源:origin: com.github.meirfaraj/gcAnalyser-lib

this.clippedPolygon.invalidate();

代码示例来源:origin: com.mgmtp.gcviewer/gcviewer

clippedPolygon.invalidate();

相关文章