file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/__init__.py
"""There is no public API to this module.""" __all__ = [] scan_for_test_modules = True """The presence of this object causes the test runner to automatically scan the directory for unit test cases"""
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_reparent_graph.py
"""Tests reparenting workflows""" import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.test import omni.usd # ====================================================================== class TestReparentGraph(ogts.OmniGraphTestCase): """Run tests that exercises the reparenting of graph a...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_abi_attribute.py
"""Runs tests on the ABIs in the Python bindings""" import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.commands import usdrt from pxr import Sdf, Usd # ============================================================================================================== class TestAttributePytho...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_omnigraph_subgraphs.py
"""Tests relating to management of OmniGraph graphs and subgraphs""" import tempfile from pathlib import Path import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit import omni.usd class TestOmniGraphSubgraphs(ogts.OmniGraphTestCase): async def test_execution_subgraph_in_push_graph(sel...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_omnigraph_commands.py
"""Tests for the various OmniGraph commands""" import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.commands import omni.kit.test import omni.usd class TestOmniGraphCommands(ogts.OmniGraphTestCase): # ---------------------------------------------------------------------- async d...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_omnigraph_listener.py
"""Tests for OmniGraph Usd Listener """ import tempfile from pathlib import Path import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.test import omni.usd # ====================================================================== class TestOmniGraphUsdListener(ogts.OmniGraphTestCase): ...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_import_nodes.py
import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.commands import omni.kit.test import omni.usd from pxr import Gf, UsdGeom class TestImportNodes(ogts.OmniGraphTestCase): TEST_GRAPH_PATH = "/World/TestGraph" async def test_import_time_samples(self): await self._test_i...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_execution_framework.py
"""Basic tests of the execution framework with OG""" import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.commands import omni.kit.test import omni.kit.undo import omni.usd import omni.usd.commands from pxr import OmniGraphSchemaTools, Sdf # ==============================================...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_omnigraph_bundles.py
"""Tests exercising bundles in OmniGraph""" import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit # ====================================================================== class TestOmniGraphBundles(ogts.OmniGraphTestCase): async def test_get_prims_use_target_prims(self): contro...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_controller_api.py
# noqa PLC0302 """Basic tests of the controller classes in omni.graph.core""" import omni.graph.core.tests as ogts # ============================================================================================================== class TestControllerApi(ogts.OmniGraphTestCase): """Run a simple set of unit tests tha...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_node_type_forwarding.py
"""Tests that exercise node type forwarding using real node types as examples""" import omni.graph.core as og import omni.graph.core._unstable as ogu import omni.graph.core.tests as ogts # ============================================================================================================== class TestNodeType...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_omnigraph_simple.py
"""Basic tests of the compute graph""" import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.commands import omni.kit.test import omni.kit.undo import omni.usd import omni.usd.commands class TestOmniGraphSimple(ogts.OmniGraphTestCase): """Run a simple unit test that exercises graph fu...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_compound_subgraphs.py
# noqa PLC0302 from typing import List import omni.graph.core as og import omni.graph.core._unstable as ogu import omni.graph.core.tests as ogts import omni.usd from pxr import Sdf COMPOUND_SUBGRAPH_NODE_TYPE = "omni.graph.nodes.CompoundSubgraph" DEFAULT_SUBGRAPH_NAME = "Subgraph" # --------------------------------...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_controllers.py
"""Basic tests of the controller classes in omni.graph.core""" import json from typing import Any, Dict, List import carb import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.test import omni.usd from omni.graph.core._impl.utils import _flatten_arguments, _Unspecified from pxr import Sdf ...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_omnigraph_graph_management.py
"""Tests relating to management of OmniGraph graphs""" import tempfile from pathlib import Path import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit import omni.usd class TestOmniGraphGraphManagement(ogts.OmniGraphTestCase): # --------------------------------------------------------...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_math_nodes.py
"""Test the math nodes""" import math import numpy as np import omni.graph.core as og import omni.graph.core.tests as ogts # ====================================================================== class TestMathNodes(ogts.OmniGraphTestCase): """Run a simple unit test that exercises graph functionality""" TES...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_extended_attributes.py
# noqa PLC0302 """Tests that exercise the functionality of the extended (union and any) attribute types""" import os import tempfile from typing import List, Optional import carb import numpy as np import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.app import omni.kit.stage_templates imp...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_omnigraph_graph_settings.py
"""OmniGraph Graph Settings Tests""" import os import tempfile import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.commands import omni.kit.test import omni.kit.undo import omni.usd import omni.usd.commands from pxr import OmniGraphSchema class TestOmniGraphSchemaGraphSettings(ogts.Omni...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_callbacks.py
""" Tests for omnigraph callbacks """ import numpy as np import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.test import omni.usd # Global variable for sharing callback location _callback_path = None # ====================================================================== class TestCal...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_data_model.py
"""Tests OG Data Model""" import omni.graph.core.tests as ogts import omni.kit.test import omni.usd # ====================================================================== class TestDataModel(ogts.OmniGraphTestCase): """ Run tests that exercises the data model features of omni graph, such as copy on write a...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_scriptnode.py
"""Basic tests of the action graph""" import omni.graph.core as og import omni.graph.core.tests as ogts # ====================================================================== class TestActionGraphIntegration(ogts.OmniGraphTestCase): """Tests for Script Node""" # --------------------------------------------...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_helpers.py
"""Tests related to the helper scripts""" import json import re from contextlib import suppress from pathlib import Path from typing import Dict, Optional, Union import omni.graph.core as og import omni.graph.core.tests as ogts import omni.graph.tools as ogt import omni.graph.tools.ogn as ogn import omni.kit import om...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_dynamic_attributes.py
"""Tests related to the dynamic attribute Python interface generation feature""" import carb import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit from omni.graph.tools._impl.node_generator.attributes.naming import CPP_KEYWORDS, PYTHON_KEYWORDS, SAFE_CPP_KEYWORDS from pxr import UsdGeom # ...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_omnigraph_all_types.py
"""Tests exercising every supported OGN data type""" from math import isnan from pathlib import Path from tempfile import TemporaryDirectory from typing import Set import carb import numpy as np import omni.graph.core as og import omni.graph.core.tests as ogts import omni.graph.nodes.tests as ognts import omni.graph.t...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/deprecated_module.py
"""Test module that exercises import-level deprecation""" import omni.graph.tools as ogt ogt.DeprecatedImport("Use 'import omni.graph.core as og' instead") def test_function(): pass
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_traversal.py
from typing import List, Set import omni.graph.core as og import omni.kit.test import omni.usd from omni.graph.core import traverse_downstream_graph, traverse_upstream_graph class TestTraversal(omni.graph.core.tests.OmniGraphTestCase): """Test cases for graph traversal functions.""" async def test_downstrea...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_attribute_template_api.py
"""Tests related to the AttributeTemplate python APIs""" import tempfile from pathlib import Path from typing import Tuple import carb import numpy as np import omni.graph.core as og import omni.graph.core._unstable as ogu import omni.graph.core.tests as ogts import omni.graph.tools.ogn as ogn import omni.kit.test imp...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_auto_instancing.py
""" Tests for omnigraph instancing """ import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.test import omni.usd from pxr import OmniGraphSchemaTools, Sdf # ====================================================================== class TestAutoInstancing(ogts.OmniGraphTestCase): async ...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_compound_nodes.py
# noqa: PLC0302 import itertools import math import os import re import tempfile from typing import List, Tuple import omni.graph.core as og import omni.graph.core._unstable as ogu import omni.graph.core.tests as ogts import omni.graph.tools.ogn as ogn import omni.kit.test import omni.usd from pxr import OmniGraphSche...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/test_maneuver_nodes.py
"""Misc collection of tests for nodes in this extension""" from typing import List import numpy as np import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.commands import omni.kit.stage_templates import omni.kit.test import omni.timeline import omni.usd from pxr import Gf, Sdf, Usd, UsdGe...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestCoW.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestSimCycleDependenciesDirtyPush.usda
#usda 1.0 ( doc = """Simulation Dependency Test""" metersPerUnit = 1 upAxis = "Y" ) def Xform "defaultPrim" { def ComputeNode "time" { custom token node:type = "omni.graph.test.Time" custom int node:typeVersion = 1 custom double outputs:time custom double outputs:fram...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestScriptNode.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestDynamicExtendedAttributes.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestBadNodeTypeName.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000.00111758711) double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { doub...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestCompoundSubgraph.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestCompoundWithExternalReference.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestAllDataTypes.NonDefault.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 ...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestBundleGraphReparent.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50050) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestGraphVariables.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (65.9072522418954, 65.90725224189542, 65...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestGatherByPath.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.999...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestExecutionConnections.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (48.54250523009243, 91.60622961173839, 859.797...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestLoadUsingCachedConnectionsSetting.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestPreSchemaCompoundNode.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 ...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestReparentGraph.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestDynamicAttributes.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestBundleSubgraphReparent.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50050) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestEventTrigger.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (48.54250523009243, 91.60622961173839, 859.797...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestExtendedAttributes.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 ...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestSubgraphDisable.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.999...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestNodeWithUnknownType.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.999...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestUSDTimeCode.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.999...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestResolvedString.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (843.4123832885864, 269.4967499032287, 3...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestFloorOutput.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 ...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestRewireExecInput.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestNodeLibrary.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestObjectIdentification.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (65.9072522418954, 65.90725224189542, 65...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestCompoundDefaultValues.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 ...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestReferenceInstance.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (578.8124999999998, 578.8124999999999, 5...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestInitWithController.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.000000000...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestNodeAttributeLookup.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestActionFanIn.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 ...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestOM70414.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 ...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestAllDataTypesPy.NonDefault.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 ...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestRootGraphWithSettings.usda
#usda 1.0 ( ) def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "push" custom int2 fileFormatVersion = (1, 1) }
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestTranslatingCube.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.999...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestSimCycleDependenciesTruePull.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestGlobalGraphs.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (346.1130520546777, 730.8688792040283, 770.334...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestGlobalGraphMultiplePipelineStages.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestCompoundGraph.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.graph.test/omni/graph/test/tests/data/TestBundleToTargetConnection.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 ...
omniverse-code/kit/exts/omni.graph.test/docs/CHANGELOG.md
# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ## [0.18.0] - 2022-11-15 ### Added - Additional te...
omniverse-code/kit/exts/omni.graph.test/docs/README.md
# OmniGraph Integration Testing [omni.graph.test] This extension contains support for tests that span multiple OmniGraph extensions. ## Published Documentation The automatically-published user guide from this repo can be viewed :ref:`here<index.rst>`
omniverse-code/kit/exts/omni.graph.test/docs/index.rst
.. _omni.graph.test: OmniGraph Integration Testing ############################# .. tabularcolumns:: |L|R| .. csv-table:: :width: 100% **Extension**: omni.graph.test,**Documentation Generated**: |today| In order to effectively test the OmniGraph access to nodes and scripts that are not necessary for the grap...
omniverse-code/kit/exts/omni.graph.test/docs/Overview.md
# OmniGraph Integration Testing ```{csv-table} **Extension**: omni.graph.test,**Documentation Generated**: {sub-ref}`today` ``` In order to effectively test the OmniGraph access to nodes and scripts that are not necessary for the graph to operate correctly. In order to minimize the unnecessary files, yet still have n...
omniverse-code/kit/exts/omni.kit.renderer.core/omni/kit/renderer_test/__init__.py
from ._renderer_test import * # Cached interface instance pointer def get_renderer_test_interface() -> IRendererTest: if not hasattr(get_renderer_test_interface, "renderer_test"): get_renderer_test_interface.renderer_test = acquire_renderer_test_interface() return get_renderer_test_interface.renderer_...
omniverse-code/kit/exts/omni.kit.widget.path_field/PACKAGE-LICENSES/omni.kit.widget.path_field-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related docume...
omniverse-code/kit/exts/omni.kit.widget.path_field/config/extension.toml
[package] title = "Kit Path Field Widget v2.0.4" version = "2.0.4" category = "Internal" description = "String field widget with tooltips for branching" authors = ["NVIDIA"] slackids = ["UQY4RMR3N"] repository = "" keywords = ["kit", "ui"] changelog = "docs/CHANGELOG.md" preview_image = "data/preview.png" [dependencie...
omniverse-code/kit/exts/omni.kit.widget.path_field/omni/kit/widget/path_field/style.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.widget.path_field/omni/kit/widget/path_field/__init__.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.widget.path_field/omni/kit/widget/path_field/model.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.widget.path_field/omni/kit/widget/path_field/widget.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.widget.path_field/omni/kit/widget/path_field/tests/__init__.py
## Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this softw...
omniverse-code/kit/exts/omni.kit.widget.path_field/omni/kit/widget/path_field/tests/test_breadcrumbs.py
## Copyright (c) 2018-2019, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this softw...
omniverse-code/kit/exts/omni.kit.widget.path_field/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [2.0.4] - 2022-11-09 ### Changes - Fix to toml file ## [2.0.3] - 2021-06-16 ### Changes - Fixes double "//" at the end of the path string. ## [2.0.2] - 2021-04-23 ### Changes - Fix to breadcrumbs on Linux returning incor...
omniverse-code/kit/exts/omni.kit.widget.path_field/docs/index.rst
omni.kit.widget.path_field ########################## A UI alternative to omni.ui.StringField for smarter path traversal (think filesystem paths). .. toctree:: :maxdepth: 1 CHANGELOG .. automodule:: omni.kit.widget.path_field :platform: Windows-x86_64, Linux-x86_64 :members: :show-inheritance: ...
omniverse-code/kit/exts/omni.kit.window.stageviewer/PACKAGE-LICENSES/omni.kit.window.stageviewer-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related docume...
omniverse-code/kit/exts/omni.kit.window.stageviewer/config/extension.toml
[package] version = "1.0.5" category = "Internal" feature = true title = "Stage Viewer" description="Adds context menu in the Content Browser that allows to inspect stages." changelog = "docs/CHANGELOG.md" [dependencies] "omni.kit.widget.stage" = {} [[python.module]] name = "omni.kit.window.stageviewer" # Additional...
omniverse-code/kit/exts/omni.kit.window.stageviewer/omni/kit/window/stageviewer/stageviewer_extension.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.stageviewer/omni/kit/window/stageviewer/stageviewer_utils.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.stageviewer/omni/kit/window/stageviewer/__init__.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.stageviewer/omni/kit/window/stageviewer/content_menu.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.stageviewer/omni/kit/window/stageviewer/stageviewer.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.stageviewer/omni/kit/window/stageviewer/singleton.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.stageviewer/omni/kit/window/stageviewer/tests/__init__.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.stageviewer/omni/kit/window/stageviewer/tests/stageviewer_test.py
## Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software a...
omniverse-code/kit/exts/omni.kit.window.stageviewer/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.0.5] - 2022-11-18 ### Fixed - Fix test on Linux ## [1.0.4] - 2022-07-05 ### Changed - Added more test to increase the test coverage ## [1.0.3] - 2022-04-06 ### Fixed - Message "Failed to acquire interface while unload...
omniverse-code/kit/exts/omni.kit.multinode/PACKAGE-LICENSES/omni.kit.multinode-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related docume...
omniverse-code/kit/exts/omni.kit.multinode/config/extension.toml
[package] title = "Kit Multi-Node Setup" version = "0.1.0" authors = ["NVIDIA"] [dependencies] "omni.kit.renderer.core" = {} [[native.plugin]] path = "bin/omni.kit.multinode.plugin" [[test]] waiver = "Extension is tested externally"
omniverse-code/kit/exts/omni.kit.widget.settings/PACKAGE-LICENSES/omni.kit.widget.settings-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related docume...