pamoja for TypeScript - v0.1.17
    Preparing search index...

    Interface Ros2Twist

    A body velocity command, matching geometry_msgs/msg/Twist.

    This is what a ROS 2 robot is driven by on cmd_vel, so it is the shape a chassis or navigation helper publishes into a ROS graph.

    interface Ros2Twist {
        angular: Ros2Vector3;
        linear: Ros2Vector3;
    }
    Index
    angular: Ros2Vector3

    The angular velocity in radians per second.

    linear: Ros2Vector3

    The linear velocity in metres per second.