Karamba3d Support Python

Hi @karamba3d,

I am trying to model support on Python with KarambaCommon.dll but I didn’t find a way to create a IReadOnlyList<bool>. A list like [ True, True, True, True, True, True ] doesn’t work. Any idea?

Thanks,
Marco

Solution for everyone.

cond = System.Collections.Generic.List[bool]()

cond.Add(True)
cond.Add(True)
cond.Add(True)
cond.Add(False)
cond.Add(True)
cond.Add(True)
2 Likes

Thanks!
– Clemens