Files
tinyusdz/tests/usda/interpolation-attribute-003.usda
Syoyo Fujita f5648176d4 Parse and Print attribute's meta info correctly.
Initial support of parsing/pprinting custom attributes.
2022-08-19 22:44:33 +09:00

19 lines
399 B
Plaintext

#usda 1.0
(
metersPerUnit = 1
upAxis = "Z"
defaultPrim = "Plane"
)
def Mesh "Plane"
{
normal3f[] normals = [(0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1)] (
interpolation = "uniform"
)
point3f[] points = [(-1, -1, 0), (1, -1, 0), (-1, 1, 0), (1, 1, 0)]
texCoord2f[] primvars:UVMap = [(0, 0), (1, 0), (1, 1), (0, 1)] (
interpolation = "faceVarying"
)
}