file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnInterpolator.rst
.. _omni_graph_nodes_Interpolator_1: .. _omni_graph_nodes_Interpolator: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: ...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnWritePrimRelationship.rst
.. _omni_graph_nodes_WritePrimRelationship_1: .. _omni_graph_nodes_WritePrimRelationship: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orph...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnMagnitude.rst
.. _omni_graph_nodes_Magnitude_1: .. _omni_graph_nodes_Magnitude: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :titl...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnSetMatrix4Quaternion.rst
.. _omni_graph_nodes_SetMatrix4Quaternion_1: .. _omni_graph_nodes_SetMatrix4Quaternion: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnConstantFloat2.rst
.. _omni_graph_nodes_ConstantFloat2_1: .. _omni_graph_nodes_ConstantFloat2: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta::...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnCurveTubePositions.rst
.. _omni_graph_nodes_CurveTubePositions_1: .. _omni_graph_nodes_CurveTubePositions: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: ....
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnMakeVector4.rst
.. _omni_graph_nodes_MakeVector4_1: .. _omni_graph_nodes_MakeVector4: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnReadPrimMaterial.rst
.. _omni_graph_nodes_ReadPrimMaterial_2: .. _omni_graph_nodes_ReadPrimMaterial: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. me...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnSubtract.rst
.. _omni_graph_nodes_Subtract_2: .. _omni_graph_nodes_Subtract: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title:...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnNor.rst
.. _omni_graph_nodes_BooleanNor_2: .. _omni_graph_nodes_BooleanNor: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :ti...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnConstantDouble.rst
.. _omni_graph_nodes_ConstantDouble_1: .. _omni_graph_nodes_ConstantDouble: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta::...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnRandomGaussian.rst
.. _omni_graph_nodes_RandomGaussian_1: .. _omni_graph_nodes_RandomGaussian: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta::...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnRemoveAttr.rst
.. _omni_graph_nodes_RemoveAttribute_2: .. _omni_graph_nodes_RemoveAttribute: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnSetMatrix4Translation.rst
.. _omni_graph_nodes_SetMatrix4Translation_1: .. _omni_graph_nodes_SetMatrix4Translation: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orph...
omniverse-code/kit/exts/omni.graph.nodes/ogn/docs/OgnGetPrimDirectionVector.rst
.. _omni_graph_nodes_GetPrimDirectionVector_2: .. _omni_graph_nodes_GetPrimDirectionVector: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :or...
omniverse-code/kit/exts/omni.graph.nodes/PACKAGE-LICENSES/omni.graph.nodes-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.nodes/config/extension.toml
[package] title = "OmniGraph Nodes" version = "1.48.3" category = "Graph" readme = "docs/README.md" changelog = "docs/CHANGELOG.md" description = "Contains a library of OmniGraph nodes" repository = "" keywords = ["omnigraph", "nodes"] # Main module for the Python interface [[python.module]] name = "omni.graph.nodes" ...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/__init__.py
"""There is no public API to this module.""" __all__ = [] from ._impl.extension import _PublicExtension # noqa: F401
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnArraySetIndexDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ArraySetIndex Sets an element of an array. If the given index is negative it will be an offset from the end of the array. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantHalf4Database.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantHalf4 Holds a 4-component half constant. """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantHalf4Database(og.Database): """Helper cla...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnAndDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.BooleanAnd Boolean AND on two or more inputs. If the inputs are arrays, AND operations will be performed pair-wise. The input sizes must match. If only one input is an array, the other input will be broadcast to the size of the array. Returns a...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnEndsWithDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.EndsWith Determines if a string ends with a given string value """ import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnEndsWithDatabase(og.Database): """Helper class p...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnInvertMatrixDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.OgnInvertMatrix Invert a matrix or an array of matrices. Returns the FLOAT_MAX * identity if the matrix is singular """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnNthRootDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.NthRoot Computes the nth root of value. The result is the same type as the input value if the numerator is a decimal type. Otherwise the result is a double. If the input is a vector or matrix, then the node will calculate the square root of eac...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnGetMatrix4QuaternionDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.GetMatrix4Quaternion Gets the rotation of the given matrix4d value which represents a linear transformation. Returns a quaternion """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import om...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnToDoubleDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ToDouble Converts the given input to 64 bit double. The node will attempt to convert array and tuple inputs to doubles of the same shape """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og i...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantFloatDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantFloat Holds a 32 bit floating point value """ import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantFloatDatabase(og.Database): """Helper class providing...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnAnyZeroDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.AnyZero Outputs a boolean indicating if any of the input values are zero within a specified tolerance. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn ...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnRotateToOrientationDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.RotateToOrientation Perform a smooth rotation maneuver, rotating a prim to a desired orientation given a speed and easing factor """ import numpy import usdrt import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import ...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnReadPrimsBundleDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ReadPrimsBundle Reads primitives and outputs multiple primitive in a bundle. """ from typing import Any import numpy import usdrt import carb import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools....
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnSetMatrix4RotationDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.SetMatrix4Rotation Sets the rotation of the given matrix4d value which represents a linear transformation. Does not modify the translation (row 3) of the matrix. """ from typing import Any import omni.graph.core as og import omni.graph.core._...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnStartsWithDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.StartsWith Determines if a string starts with a given string value """ import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnStartsWithDatabase(og.Database): """Helper c...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantDouble2Database.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantDouble2 Holds a 2-component double constant. """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantDouble2Database(og.Database): """Help...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnBreakVector3Database.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.BreakVector3 Split vector into 3 component values. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnBreakVector3Database(og.Database): ""...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnPartialSumDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.PartialSum Compute the partial sums of the input integer array named 'array' and put the result in an output integer array named 'partialSum'. A partial sum is the sum of all of the elements up to but not including a certain point in an array...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnHasVariantSetDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.HasVariantSet Query the existence of a variantSet on a prim """ import carb import usdrt import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnHasVariantSetDatabase(og.Datab...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnNegateDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.Negate Computes the result of multiplying a vector, scalar, or array of vectors or scalars by -1. The input must not be unsigned. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import om...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnXorDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.BooleanXor Boolean XOR on two inputs. If a and b are arrays, XOR operations will be performed pair-wise. Sizes of a and b must match. If only one input is an array, the other input will be broadcast to the size of the array. Returns an array of...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnArrayFindValueDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ArrayFindValue Searches for a value in an array, returns the index of the first occurrence of the value, or -1 if not found. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.gr...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnReadOmniGraphValueDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ReadOmniGraphValue Imports a data value from the Fabric cache that is located at the given path and attribute name. This is for data that is not already present in OmniGraph as that data can be accessed through a direct connection to the underl...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnToStringDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ToString Converts the given input to a string equivalent. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnToStringDatabase(og.Database): ...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnRoundDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.Round Round a decimal input to the given number of decimals. Accepts float, double, half, or arrays / tuples of the aformentioned types """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og imp...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnAsinDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.Asin Trigonometric operation arcsin of one input in degrees. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnAsinDatabase(og.Database): ...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnReadPrimDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ReadPrim DEPRECATED - use ReadPrimAttributes! """ import carb import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnReadPrimDatabase(og.Database): """Helper class provid...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnExtractBundleDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ExtractBundle Exposes readable attributes for a bundle as outputs on this node. When this node computes it will read the latest attribute values from the target bundle into these node attributes """ import carb import omni.graph.core as og im...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantDouble4Database.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantDouble4 Holds a 4-component double constant. """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantDouble4Database(og.Database): """Help...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantInt4Database.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantInt4 Holds a 4-component int constant. """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantInt4Database(og.Database): """Helper class ...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnRandomUnitVectorDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.RandomUnitVector Generates a random vector with uniform distribution on the unit sphere. """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnRandomUnitVec...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantTokenDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantToken Holds a token value, which is a 64-bit value representing an interned string """ import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantTokenDatabase(og...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantDouble3Database.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantDouble3 Holds a 3-component double constant. """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantDouble3Database(og.Database): """Help...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantUCharDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantUChar Holds an 8-bit unsigned character value """ import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantUCharDatabase(og.Database): """Helper class provi...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnGetParentPrimsDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.GetParentPrims Generates parent paths from one or more targeted paths (ex. /World/Cube -> /World) """ import usdrt import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnGetP...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnRemoveAttrDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.RemoveAttribute Copies all attributes from an input bundle to the output bundle, except for any specified to be removed. """ import carb import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn a...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantTexCoord3fDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantTexCoord3f Holds a 3D uvw texture coordinate. """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantTexCoord3fDatabase(og.Database): """...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnReadVariableDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.core.ReadVariable Node that reads a value from a variable """ from typing import Any import usdrt import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnReadVariableDatabase(og.Dat...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnNorDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.BooleanNor Boolean NOR on two or more inputs. If the inputs are arrays, NOR operations will be performed pair-wise. The input sizes must match. If only one input is an array, the other input will be broadcast to the size of the array. Returns a...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnMagnitudeDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.Magnitude Compute the magnitude of a vector, array of vectors, or a scalar If a scalar is passed in, the absolute value will be returned If an array of vectors are passed in, the output will be an array of corresponding magnitudes """ from typ...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnBlendVariantsDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.BlendVariants Add new variant by blending two variants """ import carb import usdrt import carb import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnBlendVariantsDatabase(o...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnAcosDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.Acos Trigonometric operation arccosine of one input in degrees. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnAcosDatabase(og.Database): ...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnSetMatrix4TranslationDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.SetMatrix4Translation Sets the translation of the given matrix4d value which represents a linear transformation. Does not modify the orientation (row 0-2) of the matrix. """ from typing import Any import omni.graph.core as og import omni.grap...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnNormalizeDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.Normalize Normalize the input vector. If the input vector has a magnitude of zero, the null vector is returned. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnArrayResizeDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ArrayResize Resizes an array. If the new size is larger, zeroed values will be added to the end. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn clas...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnSourceIndicesDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.SourceIndices Takes an input array of index values in 'sourceStartsInTarget' encoded as the list of index values at which the output array value will be incremented, starting at the second entry, and with the last entry into the array being t...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnTranslateToTargetDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.TranslateToTarget This node smoothly translates a prim object to a target prim object given a speed and easing factor. At the end of the maneuver, the source prim will have the same translation as the target prim """ import usdrt import carb...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnFModDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.FMod Computes the floating point remainder of A / B. If B is zero, the result is zero. The returned value has the same sign as A """ from typing import Any import sys import traceback import omni.graph.core as og import omni.graph.core._omni_...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnCreateTubeTopologyDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.CreateTubeTopology Creates the face vertex counts and indices describing a tube topology with the given number of rows and columns. """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantPathDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantPath Holds a path constant value """ import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantPathDatabase(og.Database): """Helper class providing simplifie...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnGetPrimsDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.GetPrims Filters primitives in the input bundle by path and type. """ import usdrt import carb import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnGetPrimsDatabase(og.Data...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnMakeVector3Database.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.MakeVector3 Merge 3 input values into a single output vector. If the inputs are arrays, the output will be an array of vectors. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnArrayRemoveIndexDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ArrayRemoveIndex Removes an element of an array by index. If the given index is negative it will be an offset from the end of the array. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og im...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnWriteVariableDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.core.WriteVariable Node that writes a value to a variable """ from typing import Any import usdrt import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnWriteVariableDatabase(og.Da...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnCurveTubePositionsDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.CurveTubePositions Generate tube positions from a curve description """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnCurveTubePositionsDatabase(og.Data...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnGetGraphTargetPrimDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.GetGraphTargetPrim Access the target prim the graph is being executed on. If the graph is executing itself, this will output the prim of the graph. Otherwise the graph is being executed via instancing, then this will output the prim of the tar...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantUIntDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantUInt Holds a 32 bit unsigned integer value """ import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantUIntDatabase(og.Database): """Helper class providing...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnExtractPrimDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ExtractPrim Extract a child bundle that contains a primitive with requested path/prim. This node is designed to work with Multiple Primitives in a Bundle. It searches for a child bundle in the input bundle, with 'sourcePrimPath' that matches 'i...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnFloorDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.Floor Computes the floor of the given decimal number a, which is the largest integral value not greater than a """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn ...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnBooleanExprDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.BooleanExpr NOTE: DEPRECATED AS OF 1.26.0 IN FAVOUR OF INDIVIDAL BOOLEAN OP NODES Boolean operation on two inputs. The supported operations are: AND, OR, NAND, NOR, XOR, XNOR """ import sys import traceback import omni.graph.core as og impor...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnEventUpdateTickDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.UpdateTickEvent Triggers on update ticks. """ import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnEventUpdateTickDatabase(og.Database): """Helper class providing simpl...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantHalfDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantHalf Holds a 16-bit floating point value """ import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantHalfDatabase(og.Database): """Helper class providing s...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnBuildStringDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.BuildString Creates a new token or string by concatenating the inputs. token[] inputs will be appended element-wise. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tool...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantColor4fDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantColor4f Holds a 4-component color constant, which is energy-linear RGBA, not pre-alpha multiplied """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnIsPrimSelectedDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.IsPrimSelected Checks if the prim at the given path is currently selected """ import usdrt import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnIsPrimSelectedDatabase(og.Da...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantColor3fDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantColor3f Holds a 3-component color constant, which is energy-linear RGB """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantColor3fDatabase...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnWritePrimsDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.WritePrims DEPRECATED - use WritePrimsV2! """ import carb import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnWritePrimsDatabase(og.Database): """Helper class providin...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnSelectIfDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.SelectIf Selects an output from the given inputs based on a boolean condition. If the condition is an array, and the inputs are arrays of equal length, and values will be selected from ifTrue, ifFalse depending on the bool at the same index. If...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnToHalfDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ToHalf Converts the given input to 16 bit float. The node will attempt to convert array and tuple inputs to halfs of the same shape """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnEaseDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.Ease Easing function which iterpolates between a start and end value. Vectors are eased component-wise. The easing functions can be applied to decimal types. Linear: Interpolates between start and finish at a fixed rate. EaseIn: Starts slowly a...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantQuatfDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantQuatf Holds a single-precision quaternion constant: A real coefficient and three imaginary coefficients. """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn ...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnAbsoluteDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.Absolute Compute the absolute value of a vector, array of vectors, scalar or array of scalars If an array of vectors are passed in, the output will be an array of corresponding absolute values """ from typing import Any import omni.graph.core...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnMoveToTransformDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.MoveToTransform Perform a transformation maneuver, moving a prim to a target transformation given a speed and easing factor. Transformation, Rotation, and Scale from a 4x4 transformation matrix will be applied Note: The Prim must have xform:ori...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnTanDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.Tan Trigonometric operation tangent of one input in degrees. """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnTanDatabase(og.Database): "...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConstantPoint3dDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConstantPoint3d Holds a 3-component double constant. """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnConstantPoint3dDatabase(og.Database): """Help...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnArrayGetSizeDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ArrayGetSize Returns the number of elements in an array """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnArrayGetSizeDatabase(og.Database): ...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnToTokenDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ToToken Converts the given input to a string equivalent and provides the Token value """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnToToken...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnConcatenateFloat3ArraysDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ConcatenateFloat3Arrays Flatten the array of float3 arrays in 'inputArrays' by concatenating all of the array contents into a single float3 array in 'outputArray'. The sizes of each of the input arrays is preserved in the output 'arraySizes'....
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnGetPrimRelationshipDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.GetPrimRelationship DEPRECATED - Use ReadPrimRelationship! """ import numpy import usdrt import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnGetPrimRelationshipDatabase(og...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnGetMatrix4RotationDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.GetMatrix4Rotation Gets the rotation of the given matrix4d value which represents a linear transformation. Returns euler angles (XYZ) """ from typing import Any import omni.graph.core as og import omni.graph.core._omni_graph_core as _og impor...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnReadGamepadStateDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ReadGamepadState Reads the current state of the gamepad """ import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnReadGamepadStateDatabase(og.Database): """Helper class ...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnToUint64Database.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ToUint64 Converts the given input to a 64 bit unsigned integer of the same shape. Negative integers are converted by adding them to 2**64, decimal numbers are truncated. """ from typing import Any import omni.graph.core as og import omni.grap...
omniverse-code/kit/exts/omni.graph.nodes/omni/graph/nodes/ogn/OgnReadTimeDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.nodes.ReadTime Holds the values related to the current global time and the timeline """ import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnReadTimeDatabase(og.Database): ""...