def init():
    """Initializes the Tobii SDK, you must call this function before
    any other function in the SDK.
    """
    tetio.init()

    for T in (types.Point2D, types.Point3D):
        Converter.register(T.NODE_ID, T._node_converter)

    global _initialized
    _initialized = True