?? 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 + -