Skip to content

Commit a4522f5

Browse files
author
fukuchi_n
committed
modify for Ubuntu
1 parent 12016fe commit a4522f5

File tree

7 files changed

+4
-4
lines changed

7 files changed

+4
-4
lines changed

SensorSimulinkVehicle.slx

5.9 KB
Binary file not shown.

SensorSimulinkVehicleAll.slx

14.8 KB
Binary file not shown.

SimulinkVehicle.slx

344 Bytes
Binary file not shown.

TrajectoryFollowVehicle.slx

37 Bytes
Binary file not shown.
-36 Bytes
Binary file not shown.
-23 Bytes
Binary file not shown.

setRRSCameraMode.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ function setRRSCameraMode(rrApp, mode, opt)
3636
rrCmdSetFront = rrCmdBase + """SetCameraMode(follow_mode.focus_actor_id='"+string(opt.actorID)+"'"...
3737
+ " follow_mode.height='"+string(opt.height)+"'"...
3838
+ " follow_mode.distance='"+string(opt.distance)+"'"...
39-
+ ")\""";
39+
+ ")""";
4040
elseif mode == "orbit"
41-
rrCmdSetFront = rrCmdBase + """SetCameraMode(orbit_mode.focus_actor_id='"+string(opt.actorID)+"')\""";
41+
rrCmdSetFront = rrCmdBase + """SetCameraMode(orbit_mode.focus_actor_id='"+string(opt.actorID)+"')""";
4242
elseif mode == "front"
43-
rrCmdSetFront = rrCmdBase + """SetCameraMode(front_mode.focus_actor_id='"+string(opt.actorID)+"')\""";
43+
rrCmdSetFront = rrCmdBase + """SetCameraMode(front_mode.focus_actor_id='"+string(opt.actorID)+"')""";
4444
elseif mode == "default"
45-
rrCmdSetFront = rrCmdBase + """SetCameraMode(default_mode)\""";
45+
rrCmdSetFront = rrCmdBase + """SetCameraMode(default mode)""";
4646
end
4747
% カメラを変更
4848
system(rrCmdSetFront);

0 commit comments

Comments
 (0)