chensjtu/GaussianObject

A tiny typo

2019211753 opened this issue · 0 comments

The example given in the 'query_from_list_with_list' function of the visual_hull.py seems a typo:

def query_from_list_with_list(listA: list, listB: list):
    '''
    listA: [1, 2, 3]
    listB: [3, 2, 1]
    return: [2, 1, 0]
    '''
    return [listB[i] for i in listA]

maybe listA should be [1, 2, 0]