laserconfig.java

来自「卡耐基.梅隆大学的机器人仿真软件(Redhat linux 9下安装)」· Java 代码 · 共 22 行

JAVA
22
字号
package Carmen;public class LaserConfig {  /** what kind of laser is this */  public int laser_type;    /** angle of the first beam relative       to to the center of the laser **/  public double start_angle;                       /** field of view of the laser **/  public double fov;  /** angular resolution of the laser **/  public double angular_resolution;  /** the maximum valid range of a measurement  **/  public double maximum_range;  /** error in the range measurements**/  public double accuracy;  /** if and what kind of remission values are used **/  public int remission_mode;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?