mirror of
https://github.com/lighttransport/tinyusdz.git
synced 2026-01-18 01:11:17 +01:00
19 lines
398 B
Plaintext
19 lines
398 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 = "vertex"
|
|
)
|
|
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"
|
|
)
|
|
}
|
|
|