- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中gov.nasa.worldwind.WorldWindow.redraw()
方法的一些代码示例,展示了WorldWindow.redraw()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WorldWindow.redraw()
方法的具体详情如下:
包路径:gov.nasa.worldwind.WorldWindow
类名称:WorldWindow
方法名:redraw
[英]Causes a repaint event to be enqueued with the window system for this world window. The repaint will occur at the window system's discretion, within the window system toolkit's event loop, and on the thread of that loop. This is the preferred method for requesting a repaint of the world window.
[中]导致重新绘制事件与此世界窗口的窗口系统排队。重新绘制将由窗口系统自行决定,在窗口系统工具箱的事件循环中,并在该循环的线程上进行。这是请求重新绘制世界窗口的首选方法。
代码示例来源:origin: senbox-org/snap-desktop
public void actionPerformed(ActionEvent actionEvent) {
// Simply enable or disable the layer based on its toggle button.
if (((JCheckBox) actionEvent.getSource()).isSelected())
this.layer.setEnabled(true);
else
this.layer.setEnabled(false);
wwd.redraw();
}
}
代码示例来源:origin: it.tidalwave.geo/it-tidalwave-geo-viewer-spi-worldwindprovider
@Override
public void actionPerformed (final @Nonnull ActionEvent actionEvent)
{
layer.setEnabled(((JCheckBoxMenuItem)actionEvent.getSource()).isSelected());
worldWindow.redraw();
}
代码示例来源:origin: senbox-org/snap-desktop
public void actionPerformed(ActionEvent actionEvent) {
SystemUtils.LOG.fine("actionPerformed " + actionEvent);
// Simply enable or disable the layer based on its toggle button.
//System.out.println("Product click " + layer);
//System.out.println(layer.getOpacity());
if (((JCheckBox) actionEvent.getSource()).isSelected()) {
this.layer.setOpacity(name, this.layer.getOpacity());
} else {
this.layer.setOpacity(name, 0);
}
wwd.redraw();
}
}
代码示例来源:origin: com.metsci.glimpse/glimpse-extras-worldwind
@Override
public void moved( PositionEvent event )
{
Position pos = master.getView( ).getCurrentEyePosition( );
slave.getView( ).setEyePosition( pos );
slave.redraw( );
}
} );
代码示例来源:origin: senbox-org/snap-desktop
update = true;
else
this.wwd.redraw();
本文整理了Java中gov.nasa.worldwind.util.WWMath类的一些代码示例,展示了WWMath类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Mav
我有一个程序,可以使用 weather.gov API Web Service 提取预测链接列表。然后调用每个链接以提取和存储邮政编码的天气数据,可以根据用户邮政编码首选项在我们的主页上查看这些数据。
想象一下,我定义了视频类型节点,它显示例如标题和描述以及视频本身。想象一下我有一组视频预告片,其中每个预告片都链接到一个这样的视频节点。假设将此 block 添加到显示视频类型节点的任何页面的底部:当
我正在开发一个小型 Python 函数来从 clinicalTrials.gov 中抓取数据。 。我希望从每个研究记录中抓取该研究针对的条件。例如,对于 this学习记录我想要以下内容: condit
我正准备开始我的第一个应用程序,我想从 data.gov 上公开的网络服务中获取一些数据。然而,他们提供的所有 Web 服务似乎都是基于 SOAP 的。 我巡航了 this问题,如果整个社区对此不满意
本文整理了Java中gov.nasa.worldwind.WorldWindow.pixelSizeAtDistance()方法的一些代码示例,展示了WorldWindow.pixelSizeAtDi
本文整理了Java中gov.nasa.worldwind.WorldWindow.onResume()方法的一些代码示例,展示了WorldWindow.onResume()的具体用法。这些代码示例主要
本文整理了Java中gov.nasa.worldwind.WorldWindow.setWorldWindowController()方法的一些代码示例,展示了WorldWindow.setWorld
本文整理了Java中gov.nasa.worldwind.WorldWindow.()方法的一些代码示例,展示了WorldWindow.()的具体用法。这些代码示例主要来源于Github/Stacko
本文整理了Java中gov.nasa.worldwind.WorldWindow.redraw()方法的一些代码示例,展示了WorldWindow.redraw()的具体用法。这些代码示例主要来源于G
本文整理了Java中gov.nasa.worldwind.WorldWindow.getNavigator()方法的一些代码示例,展示了WorldWindow.getNavigator()的具体用法。
本文整理了Java中gov.nasa.worldwind.WorldWindow.distanceToViewGlobeExtents()方法的一些代码示例,展示了WorldWindow.distan
本文整理了Java中gov.nasa.worldwind.WorldWindow.requestRedraw()方法的一些代码示例,展示了WorldWindow.requestRedraw()的具体用
本文整理了Java中gov.nasa.worldwind.WorldWindow.getModel()方法的一些代码示例,展示了WorldWindow.getModel()的具体用法。这些代码示例主要
本文整理了Java中gov.nasa.worldwind.WorldWindow.getFrameMetrics()方法的一些代码示例,展示了WorldWindow.getFrameMetrics()
本文整理了Java中gov.nasa.worldwind.WorldWindow.pick()方法的一些代码示例,展示了WorldWindow.pick()的具体用法。这些代码示例主要来源于Githu
本文整理了Java中gov.nasa.worldwind.WorldWindow.onPause()方法的一些代码示例,展示了WorldWindow.onPause()的具体用法。这些代码示例主要来源
本文整理了Java中gov.nasa.worldwind.WorldWindow.addNavigatorListener()方法的一些代码示例,展示了WorldWindow.addNavigator
本文整理了Java中gov.nasa.worldwind.WorldWindow.getGlobe()方法的一些代码示例,展示了WorldWindow.getGlobe()的具体用法。这些代码示例主要
本文整理了Java中gov.sandia.cognition.statistics.distribution.YuleSimonDistribution类的一些代码示例,展示了YuleSimonDis
我是一名优秀的程序员,十分优秀!