vector support 1D vector with arbitrary lenght
simple hack to bypass the size check for vectors since vtk does not care the vector size.
This commit is contained in:
parent
67a5edc93b
commit
53d2df6058
|
@ -102,7 +102,7 @@ for name in filenames:
|
|||
active = defaultdict(list)
|
||||
|
||||
for datatype,dimension,label in [['scalar',1,options.scalar],
|
||||
['vector',3,options.vector],
|
||||
['vector',99,options.vector],
|
||||
['tensor',9,options.tensor],
|
||||
['color' ,3,options.color],
|
||||
]:
|
||||
|
|
|
@ -100,7 +100,7 @@ for name in filenames:
|
|||
active = defaultdict(list)
|
||||
|
||||
for datatype,dimension,label in [['scalar',1,options.scalar],
|
||||
['vector',3,options.vector],
|
||||
['vector',99,options.vector],
|
||||
['tensor',9,options.tensor],
|
||||
['color' ,3,options.color],
|
||||
]:
|
||||
|
|
Loading…
Reference in New Issue