How to use the nanogui.file_dialog function in nanogui

To help you get started, we’ve selected a few nanogui examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github wjakob / nanogui / python / example1.py View on Github external
def cb():
            result = nanogui.file_dialog(valid, False)
            print("File dialog result = %s" % result)
github wjakob / nanogui / python / example1.py View on Github external
def cb():
            result = nanogui.file_dialog(valid, True)
            print("File dialog result = %s" % result)
github wjakob / nanogui / python / example1.py View on Github external
def cb():
            result = nanogui.file_dialog(valid, True)
            print("File dialog result = %s" % result)
github wjakob / nanogui / python / example1.py View on Github external
def cb():
            result = nanogui.file_dialog(valid, False)
            print("File dialog result = %s" % result)