Esempio n. 1
0
def draw_matrix(context, args):
    """ this takes one or more matrices packed into an iterable """
    matrices, scale = args

    mdraw = MatrixDraw28()
    for matrix in matrices:
        mdraw.draw_matrix(matrix, scale=scale)
def screen_v3d_batch_matrix(context, args):
    cdat, simple, plane, grid = args
    for matrix, color in cdat:
        mdraw = MatrixDraw28()
        mdraw.draw_matrix(matrix, skip=simple, grid=grid)
Esempio n. 3
0
def draw_matrix(context, args):
    """ this takes one or more matrices packed into an iterable """
    mdraw = MatrixDraw28()
    for matrix in args[0]:
        mdraw.draw_matrix(matrix)
Esempio n. 4
0
def screen_v3dMatrix(context, args):
    mdraw = MatrixDraw28()
    for matrix in args[0]:
        mdraw.draw_matrix(matrix)