Skip to content

Commit 9011a0c

Browse files
committed
Prettify
1 parent 1dd792c commit 9011a0c

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

examples/franka_panda_description/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# franka_panda_desctiption
22

3-
Robot description package modified from [*franka_ros*](https://frankaemika.github.io/docs/franka_ros.html) package to include dynamics parameters for the robot arm and gripper for simulating the behaviour of the real robot. The descriptions also include transmission and control definitions required for Gazebo support (see [*panda_simulator*](https://github.com/justagist/panda_simulator) package).
3+
Robot description package modified from [_franka_ros_](https://frankaemika.github.io/docs/franka_ros.html) package to include dynamics parameters for the robot arm and gripper for simulating the behaviour of the real robot. The descriptions also include transmission and control definitions required for Gazebo support (see [_panda_simulator_](https://github.com/justagist/panda_simulator) package).
44

55
Robot dynamics values are as estimated in [this paper](https://hal.inria.fr/hal-02265293/document).
66

@@ -15,6 +15,7 @@ Robot dynamics values are as estimated in [this paper](https://hal.inria.fr/hal-
1515
- Improved gripper friction values for making motion more like the real robot
1616

1717
## Related Packages
18-
- [*panda_simulator*](https://github.com/justagist/panda_simulator) : Simulation in Gazebo with exposed controllers and state feedback using ROS topics and services. The simulated robot uses the same ROS topics and services as the real robot when using the [*franka_ros_interface*](https://github.com/justagist/franka_ros_interface).
19-
- [*franka_ros_interface*](https://github.com/justagist/franka_ros_interface) : A ROS API for controlling and managing the Franka Emika Panda robot (real and simulated). Contains controllers for the robot (joint position, velocity, torque), interfaces for the gripper, controller manager, coordinate frames interface, etc.. Provides almost complete sim-to-real transfer of code.
20-
- [*panda_robot*](https://github.com/justagist/panda_robot) : Python interface providing higher-level control of the robot integrated with its gripper, controller manager, coordinate frames manager, etc. It also provides access to the kinematics and dynamics of the robot using the [KDL library](http://wiki.ros.org/kdl).
18+
19+
- [_panda_simulator_](https://github.com/justagist/panda_simulator) : Simulation in Gazebo with exposed controllers and state feedback using ROS topics and services. The simulated robot uses the same ROS topics and services as the real robot when using the [_franka_ros_interface_](https://github.com/justagist/franka_ros_interface).
20+
- [_franka_ros_interface_](https://github.com/justagist/franka_ros_interface) : A ROS API for controlling and managing the Franka Emika Panda robot (real and simulated). Contains controllers for the robot (joint position, velocity, torque), interfaces for the gripper, controller manager, coordinate frames interface, etc.. Provides almost complete sim-to-real transfer of code.
21+
- [_panda_robot_](https://github.com/justagist/panda_robot) : Python interface providing higher-level control of the robot integrated with its gripper, controller manager, coordinate frames manager, etc. It also provides access to the kinematics and dynamics of the robot using the [KDL library](http://wiki.ros.org/kdl).

src/robot.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,10 @@ export class URDFLoadingManager extends LoadingManager {
8181

8282
this._xacroLoader.workingPath =
8383
PageConfig.getBaseUrl() + 'files' + this._workingPath;
84-
console.debug('[Xacro]: Modify URL with prefix', this._xacroLoader.workingPath);
84+
console.debug(
85+
'[Xacro]: Modify URL with prefix',
86+
this._xacroLoader.workingPath
87+
);
8588
}
8689

8790
/**

0 commit comments

Comments
 (0)