type BodyPosition = {
    /**
     * Body x position.
     */
    x: number;
    /**
     * Body y position.
     */
    y: number;
    /**
     * Body orientation in radians.
     */
    theta: number;
};
