1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.zy.acs.manager.core.domain;
|
| import lombok.Data;
|
| @Data
| public class VehicleFootprint {
|
| public double head;
| public double tail;
| public double halfWidth;
|
| public VehicleFootprint() {
| }
|
| public VehicleFootprint(double head, double tail, double halfWidth) {
| this.head = head;
| this.tail = tail;
| this.halfWidth = halfWidth;
| }
|
|
| }
|
|