与USD一起工作(二)

作者:禮龍
声明:转发本文,请联系作者授权

USD本质

与USD一起工作(二)_第1张图片

1. File Structure 文件结构

#usda 1.0
(
	upAxis = "Y"
)
def Xform “simpleMesh” (
	 kind = "component"
)
{
	def Mesh "cube"  // 属性定义
	{
		point3f[] points = [(0,0,0), (1,0,0), (1,1,0), (0,1,0)]  // simpleMesh/cube.normals
		normal3f[] normals = [(0,0,1)] (
		interpolation = "uniform" )
		...
	}
}

Prims

def Xform “simpleMesh”
{
	def Mesh "cube" 
	{
	
	}
}

Properties(属性)

point3f[] points = [(0,0,0), (1,0,0), (1,1,0), (0,1,0)] 
normal3f[] normals = [(0,0,1)]
...

MetaData(元数据)

(
	upAxis = "Y"
)

(
	 kind = "component"
)

(
	interpolation = "uniform" 
)

Object Access Through Paths (通过路径访问对象)

def Mesh “cube” ==> simpleMesh/cube

normal3f[] normals = [(0,0,1)] ==> /simpleMesh/cube.normals

2. Scene Graph(场景图)

  • 场景图定义了对象的层次
  • 父节点的变换也会影响子节点
    与USD一起工作(二)_第2张图片
    与USD一起工作(二)_第3张图片
    与USD一起工作(二)_第4张图片

3. Mesh Data 网格数据

Mesh atrributes 网格属性
与USD一起工作(二)_第5张图片

Mesh connectivity 网格连接
与USD一起工作(二)_第6张图片

def Mesh "Tetrahedron"
{
	point3f[] points = [(-1,-1,1), (-1,1,-1), (1,-1,-1), (1,1,1)]
	int[] faceVertexCounts = [3, 3, 3, 3]
	int[] faceVertexIndices = [1,2,0, 3,2,1, 3,0,2, 3,1,0]
	
	normal3f[] normals = [(-0.58,-0.58,-0.58), (0.58,0.58,-0.58),
						  (0.58,-0.58,0.58), (-0.58,0.58,0.58)] (
		interpolation = "uniform"
	)
	float2[] primvars:st = [(0.75,0.43),(0.5,0.87),(0.25,0.43),
					        (1,0.87),(0,0.87),(0.5,0)] (
		interpolation = "faceVarying"
	)
	int[] primvars:st:indices = [0,1,2, 3,1,0, 4,2,1, 5,0,2]
	
	uniform token subdivisionScheme = "none"
}

point3f[] points = [(-1,-1,1), (-1,1,-1), (1,-1,-1), (1,1,1)]
与USD一起工作(二)_第7张图片

int[] faceVertexCounts = [3, 3, 3, 3]
int[] faceVertexIndices = [1,2,0, 3,2,1, 3,0,2, 3,1,0]
与USD一起工作(二)_第8张图片

normal3f[] normals = [(-0.58,-0.58,-0.58), (0.58,0.58,-0.58), (0.58,-0.58,0.58), (-0.58,0.58,0.58)] (
interpolation = “uniform” // per-face attribute
)
与USD一起工作(二)_第9张图片

float2[] primvars:st = [(0.75,0.43),(0.5,0.87),(0.25,0.43),(1,0.87),(0,0.87),(0.5,0)] (
interpolation = “faceVarying” // per-face per-vertex attribute
)
int[] primvars:st:indices = [0,1,2, 3,1,0, 4,2,1, 5,0,2]
与USD一起工作(二)_第10张图片

uniform token subdivisionScheme = “none”
与USD一起工作(二)_第11张图片

4. Materials 材质

UsdPreviewSurface

  • 用于逼真的实时渲染的模式
  • 基于物理的材料描述
  • 支持工作流
  • 金属粗糙度
  • 镜面粗糙度
材质属性

物理材料描述
diffuseColor = (1,1,1)
normal = normals.png
occlusion = occlusion.png
与USD一起工作(二)_第12张图片

金属材质
diffuseColor = (1,1,1)
normal = normals.png
occlusion = occlusion.png
metallic = 1
与USD一起工作(二)_第13张图片

镜面粗糙度
diffuseColor = (1,1,1)
normal = normals.png
occlusion = occlusion.png
metallic = 1
roughness = roughness.png
与USD一起工作(二)_第14张图片

样例
diffuseColor = diffuse.png
normal = normals.png
occlusion = occlusion.png
metallic = metallic.png
roughness = roughness.png
与USD一起工作(二)_第15张图片

5. Shader Node Graph 着色器节点图

与USD一起工作(二)_第16张图片

  • 简单的着色器节点图结构
  • 四个节点类型
    与USD一起工作(二)_第17张图片

Constant material property 恒定材料属性

与USD一起工作(二)_第18张图片
与USD一起工作(二)_第19张图片

Texture material property 纹理材质属性

与USD一起工作(二)_第20张图片
与USD一起工作(二)_第21张图片

你可能感兴趣的:(ARKit)