def transform_point(point, pose):
    '''
    Transforms a point using pose as the transformation.

    Takes a point defined in the frame defined by pose (i.e. the frame in which pose is the origin) and returns
    it in the frame in which pose is defined.  Calling this with the point (0, 0, 0) will return pose.  This
    is useful, for example, in finding the corner of a box arbitrarily positioned in space.  In the box's frame
    the corner is (xdim, ydim, zdim).  In the world, the corner is at transform_point(corner, box_pose).
    
    **Args:**
    
        **point (geometry_msgs.msg.Point):** Point to transform

        **pose (geometry_msgs.msg.Pose):** The transform
    
    **Returns:**
        A geometry_msgs.msg.Point
    '''
    return list_to_point(transform_list(point_to_list(point), pose))
def transform_point(point, pose):
    '''
    Transforms a point using pose as the transformation.

    Takes a point defined in the frame defined by pose (i.e. the frame in which pose is the origin) and returns
    it in the frame in which pose is defined.  Calling this with the point (0, 0, 0) will return pose.  This
    is useful, for example, in finding the corner of a box arbitrarily positioned in space.  In the box's frame
    the corner is (xdim, ydim, zdim).  In the world, the corner is at transform_point(corner, box_pose).
    
    **Args:**
    
        **point (geometry_msgs.msg.Point):** Point to transform

        **pose (geometry_msgs.msg.Pose):** The transform
    
    **Returns:**
        A geometry_msgs.msg.Point
    '''
    return list_to_point(transform_list(point_to_list(point), pose))
def inverse_transform_point(point, pose):
    '''
    Inverse transforms a point using pose as the transform

    Takes a point defined in the frame defined in which pose is defined and converts it into the frame defined
    by pose (i.e. the frame in which pose is the origin).  This is useful, for example, if we know the position
    of the object in the world is (x, y, z) and the pose of a table is table_pose.  We can find the height of
    the object above the table by transforming it into the pose of the table using 
    transform_point(point, table_pose) and looking at the z coordinate of the result.
    
    **Args:**

        **point (geometry_msgs.msg.Point):** Point to transform

        **pose (geometry_msgs.msg.Pose):** The transform
    
    **Returns:**
        A geometry_msgs.msg.Point
    '''
    return list_to_point(inverse_transform_list(point_to_list(point), pose))
def inverse_transform_point(point, pose):
    '''
    Inverse transforms a point using pose as the transform

    Takes a point defined in the frame defined in which pose is defined and converts it into the frame defined
    by pose (i.e. the frame in which pose is the origin).  This is useful, for example, if we know the position
    of the object in the world is (x, y, z) and the pose of a table is table_pose.  We can find the height of
    the object above the table by transforming it into the pose of the table using 
    transform_point(point, table_pose) and looking at the z coordinate of the result.
    
    **Args:**

        **point (geometry_msgs.msg.Point):** Point to transform

        **pose (geometry_msgs.msg.Pose):** The transform
    
    **Returns:**
        A geometry_msgs.msg.Point
    '''
    return list_to_point(inverse_transform_list(point_to_list(point), pose))