News
It's spring break! I'm relaxing back at home.
[3/16/2025:] Proof by Bureaucracy
[2/23/2025:] From Water to Soil
[1/10/2025:] Zen Koan
[1/7/2025:] SLAHMR and New Years Updates
[11/5/2024:] Satisfying Sip
Notes
Working on notes on the quantum mechanics, derivatives (AKA tangent spaces vs. algebraic approaches), and uploading my course notes onto this blog!
Projects
Finally started a projects page! I've recently made some nice upgrades to my post component, so it looks pretty clean! ;)
đ
I'm considering whether or not to continue this project using WebGL or Three.js.
I'm also researching methods for generating the 3D scenes I want for this project automatically.
In the meantime, I've decided to proceed with some preliminary prototypes of the other interactive parts of this project.
Orange Juice
I like orange juice. :)
Mlog
USD Scripting
December 30, 2024
By Aathreya Kadambi

Recently, Iâve been involved with a few projects that involve scripting using âOpenUSDâ, relating to NVIDIA Omniverse, Isaac Sim, etc⊠Itâs been great (here, the word great is used to mean very very exciting but simultaneously very painful), but to be honest, I probably went backwards in my path of learning how to work with it! I became confused with the different C++ and Python documentation, and what Xforms and Prims and all the other random things were (writing from the perspective of a newbie).
The primary qualm I had with the documentation (in hindsight, maybe an invalid one, but it was mainly a feeling) was that it felt hard to figure out where to start just by looking at the Python docs: https://docs.omniverse.nvidia.com/kit/docs/pxr-usd-api/latest/pxr.html. There isnât really a flow, you kind of just have to look up what you want to find, which is fine, but gets confusing at some point.
To be honest with myself though, the real pain comes from the fact that going in, I didnât have any understanding of USD! And for that, there are good references. Instead of searching for these, I kind of just rushed into the code, confident that I would be able to do a good job with just my coding skills (a false assumption). I was reluctant to learn something from scratch, which is what I should have done.
In hindsight, especially as someone who claims to love 3D art, animation, games, etc., that was all probably pretty naĂŻve of me (this post is my apology đ). <- I would give attributions to this but I donât know where itâs from actually, the src link is in the HTML, seems to be from some sus website.
So thatâs what this post is about. :-)
Pixarâs Gift to the World: Universal Scene Description
Universal Scene Description (USD) is a great way to set a 3D scene up hierarchically.
In USD, there is one fundamental encapsulation, called a prim, which is kind of like a shell for anything else. Prims all have data, and can reference other prims (leading to hierarchy). For example, Prim A could have some data for itself, and then reference Prim B, which would then be âa part of Prim Aâ. For those who are familiar with HTML, I like to think about prims as being like div
tags: theyâre simply containers.
So what kinds of data generally go into prims? Anything, but examples could include things like geometry, lighting, cameras, etc..
Another important feature is the stage. The stage consists of several âlayer stacksâ which are essentially hierarchies of prims.
Also, we have schemas. Schemas are essentially ways to lay out the structure of some data in a prim. There are two types of schemas: IsA schemas (literally stands for âis aâ), and API schemas. The former are kind of like class inheritance in code, and there are abstract and concrete versions of them. The latter is more like class composition in code, where we give additional properties to an object.
Prims have a list of API schemas, and when we give an object an API schema, they just add that schema to their list!
On top of this, they have things like Xforms, which are important to read on.
To be continued?
I have to go for now actually, but Iâm putting some good references below on USD! Some other things I thought were cool were that NVIDIA and Apple joined together to make physics schemas, which are particularly useful in things like Omniverse. At the startup I was working in last semester, we used the Physics schema, which was super interesting. Additionally, Blender has USD functionality (I like Blender)!
References
- https://openusd.org/release/glossary.html
- https://docs.blender.org/manual/en/latest/files/import_export/usd.html
- https://developer.apple.com/documentation/realitykit/creating-usd-files-for-apple-devices
- https://github.com/PixarAnimationStudios/OpenUSD
- https://github.com/uxlfoundation/oneTBB
- https://github.com/uxlfoundation/foundation/tree/main?tab=readme-ov-file#working-groups
- https://en.wikipedia.org/wiki/Universal_Scene_Description
- https://lucascheller.github.io/VFX-UsdSurvivalGuide/pages/introduction/motivation.html
Comments
Not signed in. Sign in with Google to make comments unanonymously!