2019-05-20 13:21:02 +02:00
|
|
|
import sys
|
|
|
|
|
import os
|
2019-06-12 08:29:41 +02:00
|
|
|
sys.path.insert(1, os.path.join(sys.path[0], '../../'))
|
2019-05-20 13:21:02 +02:00
|
|
|
|
2019-06-03 21:11:27 +02:00
|
|
|
import rips
|
2019-05-20 13:21:02 +02:00
|
|
|
|
2019-06-03 21:11:27 +02:00
|
|
|
resInsight = rips.Instance.find()
|
2019-05-20 13:21:02 +02:00
|
|
|
if resInsight is not None:
|
2019-06-03 14:33:16 +02:00
|
|
|
cases = resInsight.project.selectedCases()
|
|
|
|
|
|
|
|
|
|
print ("Got " + str(len(cases)) + " cases: ")
|
|
|
|
|
for case in cases:
|
|
|
|
|
print(case.name)
|
|
|
|
|
for property in case.properties.available('DYNAMIC_NATIVE'):
|
|
|
|
|
print(property)
|
|
|
|
|
|
2019-05-20 13:21:02 +02:00
|
|
|
|