(elsize='qa0.4')
| 50 | print() |
| 51 | # 1}}} |
| 52 | def box_model(elsize='qa0.4'): # {{{ |
| 53 | A = dict(vertices=np.array(((0, 0), (1, 0), (1, 1), (0, 1)))) |
| 54 | B = tr.triangulate(A, elsize) |
| 55 | B['constrained_x'] = [] # nodes with x dof fixed |
| 56 | B['constrained_y'] = [] # nodes with y dof fixed |
| 57 | return B |
| 58 | # }}} |
| 59 | def equitriangle_model(elsize='qa1', # {{{ |
| 60 | constrain=None): |
nothing calls this directly
no outgoing calls
no test coverage detected