📄 wwmodel3d.java
字号:
/*
* WWModel3D.java
*
* Created on February 14, 2008, 9:11 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package test;
import gov.nasa.worldwind.geom.Position;
/**
*
* @author RodgersGB
*/
public class WWModel3D {
private Position position;
private String path;
/** Creates a new instance of WWModel3D */
public WWModel3D(String path, Position pos) {
this.setPath(path);
this.setPosition(pos);
}
public Position getPosition() {
return position;
}
public void setPosition(Position position) {
this.position = position;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -