def read4Float(file): x = bin_ops.readSingle(file) y = bin_ops.readSingle(file) z = bin_ops.readSingle(file) w = bin_ops.readSingle(file) coords = [x, y, z, w] return coords
def readXYZ(file): x = bin_ops.readSingle(file) # X pos y = bin_ops.readSingle(file) # Y pos z = bin_ops.readSingle(file) # Z pos coords = [x, y, z] return coords
def readUvVert(file): x = bin_ops.readSingle(file) # X pos y = bin_ops.readSingle(file) # Y pos coords = [x, y] return coords