Skip to content

Commit 65709bd

Browse files
Nicholas CholyNicholas Choly
authored andcommitted
added threshold to numpy array2string()
1 parent 4eb44ec commit 65709bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

solid/solidpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ def py2openscad(o):
682682
return '"' + o + '"'
683683
if type(o).__name__ == "ndarray":
684684
import numpy
685-
return numpy.array2string(o, separator=",")
685+
return numpy.array2string(o, separator=",", threshold=1000000000)
686686
return str(o)
687687

688688

0 commit comments

Comments
 (0)