file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.kit.helper.file_utils/omni/kit/helper/file_utils/tests/test_asset_types.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.helper.file_utils/docs/index.rst
omni.kit.helper.file_utils ########################## .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.actions.window/omni/kit/actions/window/style.py
__all__ = ["ActionsWindowStyle"] from omni.ui import color as cl from pathlib import Path CURRENT_PATH = Path(__file__).parent ICON_PATH = CURRENT_PATH.parent.parent.parent.parent.joinpath("data").joinpath("icons") VIEW_ROW_HEIGHT = 28 """Style colors""" # https://confluence.nvidia.com/pages/viewpage.action?pageId=1...
omniverse-code/kit/exts/omni.kit.actions.window/omni/kit/actions/window/extension.py
__all__ = ["ActionsExtension"] from functools import partial import carb.settings import omni.ext import omni.ui as ui import omni.kit.ui from omni.kit.actions.core import get_action_registry from .window import ActionsWindow SETTING_SHOW_STARTUP = "/exts/omni.kit.actions.window/showStartup" class ActionsExtension(o...
omniverse-code/kit/exts/omni.kit.actions.window/omni/kit/actions/window/__init__.py
__all__ = [ "ActionsExtension", "AbstractActionItem", "ActionExtItem", "AbstractActionsModel", "ColumnRegistry", "ActionsView", "AbstractColumnDelegate", "StringColumnDelegate", "ActionsDelegate", "ActionsPicker", "ACTIONS_WINDOW_STYLE", ] from .extension import * from .model...
omniverse-code/kit/exts/omni.kit.actions.window/omni/kit/actions/window/picker.py
__all__ = ["ActionColumnDelegate", "ActionsPicker"] import omni.ui as ui from typing import List, Callable from omni.kit.actions.core import Action from .window import ActionsWindow from .model.actions_item import AbstractActionItem, ActionDetailItem from .delegate.string_column_delegate import StringColumnDelegate cl...
omniverse-code/kit/exts/omni.kit.actions.window/omni/kit/actions/window/column_registry.py
__all__ = ["ColumnRegistry"] from typing import Optional, Dict import carb from .delegate.abstract_column_delegate import AbstractColumnDelegate class ColumnRegistry: """ Registry for action columns. """ def __init__(self): self._max_column_id = -1 self._delegates: Dict[int, AbstractCo...
omniverse-code/kit/exts/omni.kit.actions.window/omni/kit/actions/window/window.py
__all__ = ["ActionsWindow"] from .model.actions_model import ActionsModel, ActionDetailItem from .column_registry import ColumnRegistry from .widget.actions_view import ActionsView from .delegate.actions_delegate import ActionsDelegate from .delegate.string_column_delegate import StringColumnDelegate from .style import...
omniverse-code/kit/exts/omni.kit.actions.window/omni/kit/actions/window/widget/actions_view.py
__all__ = ["ActionsView"] import omni.ui as ui from ..model.abstract_actions_model import AbstractActionsModel from ..delegate.actions_delegate import ActionsDelegate class ActionsView(ui.TreeView): def __init__(self, model: AbstractActionsModel, delegate: ActionsDelegate): super().__init__( mo...
omniverse-code/kit/exts/omni.kit.actions.window/omni/kit/actions/window/delegate/actions_delegate.py
__all__ = ["ActionsDelegate"] from typing import List import omni.ui as ui from typing import Optional from .abstract_column_delegate import AbstractColumnDelegate from ..model.abstract_actions_model import AbstractActionsModel from ..column_registry import ColumnRegistry from ..style import ICON_PATH, VIEW_ROW_HEIGHT...
omniverse-code/kit/exts/omni.kit.actions.window/omni/kit/actions/window/delegate/string_column_delegate.py
__all__ = ["StringColumnDelegate"] from .abstract_column_delegate import AbstractColumnDelegate from ..model.actions_item import ActionExtItem, AbstractActionItem from ..model.abstract_actions_model import AbstractActionsModel from ..style import HIGHLIGHT_LABEL_STYLE import omni.ui as ui from omni.kit.widget.highlight...
omniverse-code/kit/exts/omni.kit.actions.window/omni/kit/actions/window/delegate/abstract_column_delegate.py
__all__ = ["AbstractColumnDelegate"] import omni.ui as ui import abc class AbstractColumnDelegate: """ Represent a column delegate in actions Treeview. Args: name (str): Column name. width (ui.Length): Column width. Default ui.Fraction(1). """ def __init__(self, name: str, width: ...
omniverse-code/kit/exts/omni.kit.actions.window/omni/kit/actions/window/tests/__init__.py
from .test_actions_window import *
omniverse-code/kit/exts/omni.kit.actions.window/omni/kit/actions/window/tests/test_actions_window.py
from ast import Import import omni.kit.test import omni.kit.app from omni.ui.tests.test_base import OmniUiTest from omni.kit.actions.core import get_action_registry import omni.ui as ui import omni.kit.ui_test as ui_test from omni.kit.ui_test import Vec2 from pathlib import Path CURRENT_PATH = Path(__file__).parent TE...
omniverse-code/kit/exts/omni.kit.actions.window/docs/CHANGELOG.rst
********** CHANGELOG ********** This document records all notable changes to ``omni.kit.actions.window`` extension. This project adheres to `Semantic Versioning <https://semver.org/>`. ## [1.1.0] - 2022-10-17 ### Changed - OM-65822: Also search for Action display name without case sensitive - Update UI to use same st...
omniverse-code/kit/exts/omni.kit.actions.window/docs/index.rst
omni.kit.actions.window ########################### Window to show actions. .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.property.transform/PACKAGE-LICENSES/omni.kit.property.transform-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.property.transform/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.3.5" # Lists people or organizations that are considered the "authors" of the package. authors = ["NVIDIA"] # The title and description fields are primarly for displaying extension info in UI title = "Transform Property Widget" description="Vie...
omniverse-code/kit/exts/omni.kit.property.transform/omni/kit/property/transform/__init__.py
from .scripts import *
omniverse-code/kit/exts/omni.kit.property.transform/omni/kit/property/transform/scripts/xform_op_utils.py
from pxr import Usd, Tf, Sdf, Gf, UsdGeom import carb from omni.kit.property.usd.prim_selection_payload import PrimSelectionPayload import omni.kit XFROM_OP_PREFIX = "xformOp:" INVERSE_PREFIX = "!invert!" INVERSE_XFORM_OP_PREFIX = "!invert!xformOp:" RESET_XFORM_STACK = UsdGeom.XformOpTypes.resetXformStack XFROM_OP_TYP...
omniverse-code/kit/exts/omni.kit.property.transform/omni/kit/property/transform/scripts/transform_model.py
from typing import Callable import weakref import carb import omni.timeline import omni.ui as ui import omni.usd from pxr import Usd, Sdf, Tf, Gf from omni.kit.property.usd.usd_attribute_model import ( FloatModel, UsdBase, UsdAttributeModel, GfVecAttributeModel, ) # TODO: will add controlstate class...
omniverse-code/kit/exts/omni.kit.property.transform/omni/kit/property/transform/scripts/transform_widget.py
import traceback import carb import omni.usd import omni.ui as ui from functools import lru_cache from pxr import UsdGeom, Tf, Usd, Sdf from pxr import Trace from collections import defaultdict from typing import Any, DefaultDict, Dict, List, Sequence, Set, Tuple from .transform_builder import TransformWidgets from o...
omniverse-code/kit/exts/omni.kit.property.transform/omni/kit/property/transform/scripts/transform_builder.py
from queue import Empty from re import T from typing import Any import weakref import asyncio import os, functools, sys from abc import ABC, abstractmethod from enum import Enum from functools import partial import carb import omni.ui as ui import omni.ext import omni.usd import omni.timeline import omni.kit.commands ...
omniverse-code/kit/exts/omni.kit.property.transform/omni/kit/property/transform/scripts/__init__.py
from .transform_properties import *
omniverse-code/kit/exts/omni.kit.property.transform/omni/kit/property/transform/scripts/transform_properties.py
import os import carb import omni.ext from pxr import Sdf, UsdLux, UsdGeom, Gf from pathlib import Path from functools import partial from .transform_widget import TransformAttributeWidget from omni.kit.property.usd.prim_selection_payload import PrimSelectionPayload from . import transform_builder import omni.ui as ui ...
omniverse-code/kit/exts/omni.kit.property.transform/omni/kit/property/transform/scripts/transform_commands.py
import carb import omni.kit.commands import omni.usd from omni.kit.usd_undo import * from pxr import Gf, Vt, Sdf, Usd, UsdGeom, UsdUtils from . import xform_op_utils class EnableXformOpCommand(omni.kit.commands.Command): """ Add and attritube's corresponding XformOp to xformOpOrder **Command**. Args: ...
omniverse-code/kit/exts/omni.kit.property.transform/omni/kit/property/transform/tests/test_builder.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.property.transform/omni/kit/property/transform/tests/test_transform.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.property.transform/omni/kit/property/transform/tests/__init__.py
from .test_transform import * from .test_offset import * from .test_transform_context_menu import * from .test_commands import * from .test_builder import *
omniverse-code/kit/exts/omni.kit.property.transform/omni/kit/property/transform/tests/test_offset.py
## Copyright (c) 2022, 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.property.transform/omni/kit/property/transform/tests/test_commands.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.property.transform/omni/kit/property/transform/tests/test_transform_context_menu.py
## Copyright (c) 2022, 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.property.transform/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.3.5] - 2023-02-08 ### Fixed - Add Transform button's error for prims constructed from reference layer and doesn't have xformOpOrder attribute ## [1.3.4] - 2022-09-20 ### Added - Added listener for `ADDITIONAL_CHANGED...
omniverse-code/kit/exts/omni.kit.property.transform/docs/README.md
# omni.kit.property.transform ## Introduction Property window extensions are for viewing and editing Usd Prim Attributes ## This extension supports editing of XForm transforms
omniverse-code/kit/exts/omni.kit.property.transform/docs/index.rst
omni.kit.property.transform ########################### Property Transform Values .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.property.transform/data/tests/usd/bound_shapes.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.kit.property.transform/data/test_data/offset_test.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.kit.property.transform/data/test_data/test_map/test_transform_property.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (559.9692788987584, 558.6117791779976, 5...
omniverse-code/kit/exts/omni.kit.property.transform/data/test_data/test_map/OM-79303.usda
#usda 1.0 ( defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { over "Scene_Geom"{ def Xform "Mesh1"{ def Mesh "Mesh1"{ int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] ...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/__init__.py
from .scripts import * def deferred_capture(viewport_window, callback, is_hdr=False, subscription_name=None): def _get_subs_name(): import sys frame = sys._getframe(1).f_back f_code = frame.f_code filepath = f_code.co_filename lineno = frame.f_lineno return "VP ca...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/scripts/external_drag_drop_helper.py
import os import re import pathlib from pxr import Sdf, Tf from typing import List from omni.kit.window.drop_support import ExternalDragDrop external_drag_drop = None def setup_external_drag_drop(window_name :str): global external_drag_drop destroy_external_drag_drop() external_drag_drop = ExternalDragDr...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/scripts/commands.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 and rel...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/scripts/__init__.py
from .context_menu import * from .viewport import * from .commands import *
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/scripts/context_menu.py
# 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 rel...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/scripts/viewport.py
# Because ExtensionWindowHandle is used, we should get rid of it really: import omni.kit.extensionwindow import asyncio import carb import copy from .._viewport_legacy import * from omni.hydra.engine.stats import HydraEngineStats, get_mem_stats import warnings def get_viewport_interface(): """Returns cached :cla...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/scripts/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.viewport/omni/kit/viewport_legacy/tests/camera_tests.py
# 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 rel...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/tests/create_prims.py
import os import random import carb import omni.usd import omni.kit.commands from pxr import Usd, Sdf, UsdGeom, Gf, Tf, UsdShade, UsdLux def create_test_stage(): stage = omni.usd.get_context().get_stage() rootname = stage.GetDefaultPrim().GetPath().pathString prim_list1 = [] prim_list2 = [] # cre...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/tests/context_tests.py
import asyncio import carb import omni.usd import omni.kit.test import omni.kit.viewport_legacy import omni.timeline from pxr import Usd, UsdGeom, Gf, Sdf from omni.kit.test_suite.helpers import arrange_windows, wait_stage_loading # Having a test class dervived from omni.kit.test.AsyncTestCase declared on the root of...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/tests/mouse_raycast_tests.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 and rel...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/tests/drag_drop_multi_material_viewport.py
## Copyright (c) 2022, 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.viewport/omni/kit/viewport_legacy/tests/window_tests.py
# 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 rel...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/tests/__init__.py
from .draw_tests import * from .context_tests import * from .create_prims import * from .camera_tests import * from .mouse_raycast_tests import * # these tests must be last or test_viewport_mouse_raycast fails. from .multi_descendents_dialog import * from .drag_drop_multi_material_viewport import * from .drag_drop_look...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/tests/draw_tests.py
import carb.dictionary import omni.usd import omni.kit.test import omni.kit.viewport_legacy import omni.timeline from pxr import Usd, UsdGeom, Gf, Sdf from omni.kit.test_suite.helpers import arrange_windows # Having a test class dervived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto...
omniverse-code/kit/exts/omni.kit.window.viewport/omni/kit/viewport_legacy/tests/drag_drop_looks_material_viewport.py
## Copyright (c) 2022, 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.viewport/omni/kit/viewport_legacy/tests/multi_descendents_dialog.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.viewport/data/tests/empty_stage.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.kit.window.viewport/data/tests/multi-material-object-cube-component.usda
#usda 1.0 ( customLayerData = { dictionary audioSettings = { double dopplerLimit = 2 double dopplerScale = 1 double nonSpatialTimeScale = 1 double spatialTimeScale = 1 double speedOfSound = 340 } dictionary cameraSettings = { ...
omniverse-code/kit/exts/omni.kit.window.viewport/data/tests/bound_shapes.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.inspect/PACKAGE-LICENSES/omni.inspect-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.inspect/config/extension.toml
[package] version = "1.0.1" title = "Object Inspection Capabilities" description = "Provides interfaces you can add to your ABI to provide data inspection information in a compliant way" keywords = [ "debug", "inspect", "information" ] [[native.plugin]] path = "bin/*.plugin" recursive = false [[python.module]] name =...
omniverse-code/kit/exts/omni.inspect/omni/inspect/_omni_inspect.pyi
from __future__ import annotations import omni.inspect._omni_inspect import typing import omni.core._core __all__ = [ "IInspectJsonSerializer", "IInspectMemoryUse", "IInspectSerializer", "IInspector" ] class IInspectJsonSerializer(_IInspectJsonSerializer, IInspector, _IInspector, omni.core._core.IObj...
omniverse-code/kit/exts/omni.inspect/omni/inspect/__init__.py
""" Contains interfaces for inspecting values used within other interfaces """ # Required to be able to instantiate the object types import omni.core # Interface from the ABI bindings from ._omni_inspect import IInspectJsonSerializer from ._omni_inspect import IInspectMemoryUse from ._omni_inspect import IInspectSeria...
omniverse-code/kit/exts/omni.inspect/omni/inspect/tests/test_bindings.py
"""Suite of tests to exercise the bindings exposed by omni.inspect""" import omni.kit.test import omni.inspect as oi from pathlib import Path import tempfile # ============================================================================================================== class TestOmniInspectBindings(omni.kit.test.As...
omniverse-code/kit/exts/omni.inspect/omni/inspect/tests/__init__.py
""" Scan the test directory for unit tests """ scan_for_test_modules = True
omniverse-code/kit/exts/omni.inspect/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] ## [1.0.1] - 2022-06-28 ### Added - Linked docs in...
omniverse-code/kit/exts/omni.inspect/docs/README.md
# Omniverse Data Inspector [omni.inspect] The data inspector module contains interfaces that provide a consistent method of inspecting data from extensions in an ABI-friendly manner.
omniverse-code/kit/exts/omni.inspect/docs/index.rst
.. _omni_inspect_ext: omni.inspect: Omniverse Data Inspector ####################################### The interfaces in this extension don't do anything themselves, they merely provide a conduit through which other objects can provide various information through a simple ABI without each object being required to provi...
omniverse-code/kit/exts/omni.kit.widget.imageview/PACKAGE-LICENSES/omni.kit.widget.imageview-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.imageview/config/extension.toml
[package] version = "1.0.3" category = "Internal" title = "ImageView Widget" description="The widget that allows to view image in a canvas." changelog = "docs/CHANGELOG.md" [dependencies] "omni.ui" = {} [[python.module]] name = "omni.kit.widget.imageview" [[test]] args = [ "--/app/window/dpiScaleOverride=1.0", ...
omniverse-code/kit/exts/omni.kit.widget.imageview/omni/kit/widget/imageview/__init__.py
from .imageview import ImageView
omniverse-code/kit/exts/omni.kit.widget.imageview/omni/kit/widget/imageview/imageview.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.imageview/omni/kit/widget/imageview/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.widget.imageview/omni/kit/widget/imageview/tests/imageview_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.widget.imageview/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.0.3] - 2022-11-10 ### Removed - Removed dependency on omni.kit.test ## [1.0.2] - 2022-05-04 ### Updated - Add set_progress_changed_fn API for caller to check if the image has been loaded. ## [1.0.1] - 2020-09-16 ### U...
omniverse-code/kit/exts/omni.graph.core/ogn/nodes.json
{ "nodes": { "omni.graph.core.Prim": { "description": "This is a system built-in node to deal with USD prim data interface to/from an OmniGraph node. This extends the INodeType interface, so it acts as an INodeType, but also uses the internal API to directly communicate with OmnIGraph.", ...
omniverse-code/kit/exts/omni.graph.core/PACKAGE-LICENSES/omni.graph.core-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.graph.core/config/extension.toml
[package] title = "OmniGraph" version = "2.65.4" category = "Graph" readme = "docs/README.md" changelog = "docs/CHANGELOG.md" description = "Contains the implementation of the OmniGraph core." preview_image = "data/preview.png" repository = "" keywords = ["omnigraph", "core"] # Other extensions on which this one relie...
omniverse-code/kit/exts/omni.graph.core/omni/graph/core/ogn/OgnPrimDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.core.Prim This is a system built-in node to deal with USD prim data interface to/from an OmniGraph node. This extends the INodeType interface, so it acts as an INodeType, but also uses the internal API to directly communicate with OmnIGraph. """ imp...
omniverse-code/kit/exts/omni.graph.core/omni/graph/core/ogn/nodes/core/OgnPrim.ogn
{ "Prim": { "version": 1, "description": [ "This is a system built-in node to deal with USD prim data interface to/from an OmniGraph node.", "This extends the INodeType interface, so it acts as an INodeType, but also uses the internal API to directly", "communicat...
omniverse-code/kit/exts/omni.graph.core/omni/graph/core/ogn/nodes/core/OgnPrim.cpp
// Copyright (c) 2019-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 softwa...
omniverse-code/kit/exts/omni.graph.core/omni/graph/core/ogn/tests/TestOgnPrim.py
import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts import os class TestOgn(ogts.OmniGraphTestCase): async def test_data_access(self): from omni.graph.core.ogn.OgnPrimDatabase import OgnPrimDatabase test_file_name = "OgnPrimTemplate.usda" usd_path = os.p...
omniverse-code/kit/exts/omni.graph.core/omni/graph/core/ogn/tests/__init__.py
"""====== GENERATED BY omni.graph.tools - DO NOT EDIT ======""" import omni.graph.tools as ogt ogt.import_tests_in_directory(__file__, __name__)
omniverse-code/kit/exts/omni.graph.core/omni/graph/core/ogn/tests/usd/OgnPrimTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnPrim.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulation"...
omniverse-code/kit/exts/omni.graph.core/docs/roadmap.rst
Roadmap ******* Pending Deprecations ==================== As described in :ref:`omnigraph_versioning` we attempt to provide backward compatibility for as long as we can. That notwithstanding it will always be a smoother experience for you if you migrate away from using deprecated functionality at your earliest conven...
omniverse-code/kit/exts/omni.graph.core/docs/nodes.rst
OmniGraph Nodes *************** The OmniGraph node provides an encapsulated piece of functionality that is used in a connected graph structure to form larger more complex calculations. One of the core strengths of the way the nodes are defined is that individual node writers do not have to deal with the complexity of...
omniverse-code/kit/exts/omni.graph.core/docs/omnigraph_arch_decisions.rst
.. _omnigraph_architectural_decisions_log: OmniGraph Architectural Decisions Log ------------------------------------- This log lists the architectural decisions for OmniGraph. For new ADRs, please use :doc:`the ADR Decision template<decisions/adr-template>`. More information on MADR is available at `the MADR webs...
omniverse-code/kit/exts/omni.graph.core/docs/architecture.rst
OmniGraph Architecture ********************** Fabric ====== As mentioned in the introduction, one of the key dependencies that OmniGraph has is Fabric. While not doing it justice, in a nutshell Fabric is a cache of USD data in vectorized, compute friendly form. OmniGraph leverages Fabric's data vectorization featur...
omniverse-code/kit/exts/omni.graph.core/docs/categories.rst
.. _omnigraph_node_categories: OmniGraph Node Categories ========================= An OmniGraph node can have one or more categories associated with it, giving the UI a method of presenting large lists of nodes or node types in a more organized manner. Category Specification In .ogn File ----------------------------...
omniverse-code/kit/exts/omni.graph.core/docs/how_to.rst
.. _omnigraph_how_to: OmniGraph How-To Guide ====================== .. toctree:: :maxdepth: 2 :caption: How-To :glob: :ref:`Specifying Categories In Your Nodes <omnigraph_node_categories>` :ref:`Interfacing With OmniGraph <omnigraph_controller_class>` :ref:`Initializing Attribute Values At Runtime ...
omniverse-code/kit/exts/omni.graph.core/docs/directory_structure.rst
.. _omnigraph_directory_structure: OmniGraph Directory Structure ----------------------------- It is advantageous to consider nodes as a separate type of thing and structure your directories to make them easier to find. While it's not required in order to make the build work, it's recommended in order to keep the loca...
omniverse-code/kit/exts/omni.graph.core/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). ## [2.65.4] - 2023-02-10 ### Fixed - Ordering of dependency node co...
omniverse-code/kit/exts/omni.graph.core/docs/versioning.rst
.. _omnigraph_versioning: OmniGraph Versioning #################### There are many facets to OmniGraph that can and will change over time as OmniGraph is still very much a work in progress. In order to minimize disruption to our users all of these types of changes have been enumerated and incremental deprecation plan...
omniverse-code/kit/exts/omni.graph.core/docs/core_concepts.rst
OmniGraph Core Concepts *********************** .. _omnigraph_concept_node: Node ==== The heart of any node graph system is of course, the node. The most important exposed method on the node is one to get an attribute, which houses all of the data the node uses for computing. The most import method you implement is ...
omniverse-code/kit/exts/omni.graph.core/docs/usd.rst
OmniGraph And USD ################# USD is used as a source of data for OmniGraph. Both can be described as a set of nodes, attributes, and connections, each with their own set of strengths and restrictions. USD is declarative - it has no system for procedurally generating attribute values (such as expression binding...
omniverse-code/kit/exts/omni.graph.core/docs/README.md
# OmniGraph [omni.graph.core] OmniGraph is a graph system that provides a compute framework for Omniverse through the use of nodes and graphs. In time, this computational framework will form the foundation of many other subsystems in Omniverse. This extension contains the core functionality of the OmniGraph.
omniverse-code/kit/exts/omni.graph.core/docs/naming_conventions.rst
.. _omnigraph_naming_conventions: OmniGraph Naming Conventions ---------------------------- The mandatory naming conventions are noted where applicable. The rest of these conventions have been set up to make it as easy as possible for you to write your own nodes, and to be able to read the nodes that others have writt...
omniverse-code/kit/exts/omni.graph.core/docs/index.rst
.. include:: ../../../../_build/ogn/docs/substitutions.rst .. tabularcolumns:: |L|R| .. csv-table:: :width: 100% **Extension Version**: |omni.graph.core.version|,**Documentation Generated**: |today| What is it, and why are we doing it? ************************************ Omniverse will be made up of many ex...
omniverse-code/kit/exts/omni.graph.core/docs/usd_representations.rst
******************************** OmniGraph Representations in USD ******************************** Each of the components of an OmniGraph are represented using native USD elements for maximum compatibility. Sometimes extra data will be encoded in metadata or ancillary attributes where functionality is needed that isn'...
omniverse-code/kit/exts/omni.graph.core/docs/Overview.md
# OmniGraph Overview ```{eval-rst} .. include:: ../../../../_build/ogn/docs/substitutions.rst :start-line: 2 ``` ```{csv-table} **Extension**: omni.graph.core,**Documentation Generated**: {sub-ref}`today` ``` ## What is it, and why are we doing it? Omniverse will be made up of many extensions - from animations, ...