Hi all,
Any clues?
The lines are from a floor in linked file.
It keeps getting one polycurve as a NULL.
I tried different Tolerances, but nothing.
Hi all,
Any clues?
The lines are from a floor in linked file.
It keeps getting one polycurve as a NULL.
I tried different Tolerances, but nothing.
sometimes dynamo has issues to create the revit geometry. If it just one i would skip it.
x == null ? false : true
or in python:
curves = IN[0]
for curve in curves:
try:
if curve != Null:
output.append(curve)
except:
continue
you could also implement an exception handler, but i think the error will give you no hint
like:
except:
import traceback
output.append(traceback.format_exc())
if not look at the element:
try to simplify the form
Thanks.
It’s just one, so I skip it