Consider a task where a Mesh prim needs to have its points property subdivided to achieve a higher quality of deformation. Which of the following is correct?
Which of these are valid types for custom attributes in OpenUSD? (Choose two.)
What will be the composed value of /World/Tree/Canopy.primvars:displayColor when you open stage.usda?
#usda 1.0
(
defaultPrim = "World"
metersPerUnit = 1.0
upAxis = "Z"
)
def Xform "World"
{
def Xform "Tree" (
variantSets = ["foliage_color"]
variants = { string foliage_color = "default" }
)
{
def Cone "Canopy" (
references = [ < /_base_foliage_color > ]
)
{
double3 xformOp:translate = (0, 0, 1.3)
token[] xformOpOrder = ["xformOp:translate"]
}
def Cylinder "Trunk"
{
color3f[] primvars:displayColor = [(0.2, 0.1, 0.05)]
double3 xformOp:scale = (0.4, 0.4, 0.4)
token[] xformOpOrder = ["xformOp:scale"]
}
variantSet "foliage_color" = {
"default" {
}
"evergreen" {
over "Canopy"
{
color3f[] primvars:displayColor = [(0.05, 0.15, 0.05)]
}
}
"orange" {
over "Canopy"
{
color3f[] primvars:displayColor = [(0.5, 0.3, 0.05)]
}
}
}
}
}
class "_base_foliage_color"
{
color3f[] primvars:displayColor = [(0.2, 0.75, 0.1)]
}
Review the following code for creating 1000 sphere instances. When this code is executed, why will the authored prims not yield any instancing efficiencies?
for i in range(1000):
xform = UsdGeom.Xform.Define(stage, f"/test_{i}")
sphere_path = xform.GetPath().AppendPath("sphere")
UsdGeom.Sphere.Define(stage, sphere_path)
xform.GetPrim().SetInstanceable(True)
xform.AddTranslateOp().Set((i * 2, 0, 0))
What is the fundamental data type in USD that enables API schemas to be non-destructively removed in stronger layers?
As part of a data exchange workflow, you have exported the following file from your DCC tool, and notice that the displayed extents box of the sphere is too large:
#usda 1.0
(
defaultPrim = "Model1"
)
def Sphere "MySphere"
{
double radius = 0.5
float3[] extent = [(-3.0, -3.0, -3.0), (3.0, 3.0, 3.0)]
}
Your tool, and also the final consumer of the scene data, would like best-fit correct extents. Which of the following could the export process do to address this problem for any exported boundable prim?
When constructing an OpenUSD scene, in which scenario is it most appropriate to use a payload instead of a reference?
Which is the most appropriate combination of OpenUSD features to consider when trying to solve problems related to artists interaction with LODs, Material variations and Asset Versions?
In a complex scene with multiple composition arcs, which of the following could cause unexpected property values? Choose two.
When prioritizing ease of interchange and reducing dependencies between different applications in a pipeline, why might codeless schemas, schemas defined purely in .usda files, be preferred over codeful schemas, schemas with generated classes using usdGenSchema?