We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b25d15 commit 4d062bbCopy full SHA for 4d062bb
xplt/line.py
@@ -374,7 +374,9 @@ def ang(a):
374
) # angle between plot x-axis and radial vector of bending
375
376
LENGTH = get(survey, "length", np.zeros(len(NAME)))
377
- IS_THICK = get(survey, "isthick", np.zeros(len(NAME), "bool"))
+ IS_THICK = np.array(get(survey, "isthick", [False] * len(NAME))) | (
378
+ np.array(get(survey, "length", [0] * len(NAME))) > 0
379
+ )
380
ORDER = get(survey, "order", -np.ones(len(NAME), "int"))
381
if (TYPE := get(survey, "element_type", None)) is not None:
382
# map element type to order when order is not in survey
0 commit comments