def RunCommand(is_interactive): scene = get_scene() if not scene: return rhinoform = scene.get("form")[0] if not rhinoform: return AttributesForm.from_diagram(rhinoform)
def RunCommand(is_interactive): scene = get_scene() if not scene: return thrust = scene.get("thrust")[0] if not thrust: print("There is no ThrustDiagram in the scene.") return AttributesForm.from_sceneNode(thrust)
def RunCommand(is_interactive): scene = get_scene() if not scene: return pattern = scene.get("pattern")[0] if not pattern: print("There is no Pattern in the scene.") return AttributesForm.from_sceneNode(pattern)
def RunCommand(is_interactive): scene = get_scene() if not scene: return force = scene.get("force")[0] if not force: print("There is no ForceDiagram in the scene.") return AttributesForm.from_sceneNode(force)