소스 검색

change datatype of timestep from int to float

tags/Release_1
Waetschker Daniel (uib17511) 3 년 전
부모
커밋
58054d6eea
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      app/src/main/java/de/hems/trafficsim/VehicleTimeRecord.java

+ 2
- 2
app/src/main/java/de/hems/trafficsim/VehicleTimeRecord.java 파일 보기

@@ -16,9 +16,9 @@ public class VehicleTimeRecord {
protected int id;
protected float position;
protected float velocity;
protected int timestep;
protected float timestep;

public VehicleTimeRecord(int id, float position, float velocity, int timestep) {
public VehicleTimeRecord(int id, float position, float velocity, float timestep) {
this.id = id;
this.position = position; //needed???
this.velocity = velocity;


불러오는 중...
취소
저장