endian11
2020-12-04 bde7f140ef75a1434ec3a2b698433bd767ba4943
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package safeluck.drive.evaluation.bean;
 
/**
 * DriveJudge
 * Created by lzw on 2020/10/26. 13:59:39
 * 邮箱:632393724@qq.com
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
public class StraightLineSetting {
 
    /**
     * straight_limit_distance : 100
     * straight_max_offset : 0.3
     */
 
    private int straight_limit_distance;
    private double straight_max_offset;
 
    public int getStraight_limit_distance() {
        return straight_limit_distance;
    }
 
    public void setStraight_limit_distance(int straight_limit_distance) {
        this.straight_limit_distance = straight_limit_distance;
    }
 
    public double getStraight_max_offset() {
        return straight_max_offset;
    }
 
    public void setStraight_max_offset(double straight_max_offset) {
        this.straight_max_offset = straight_max_offset;
    }
}