1、SCNGeometry简介

  SCNGeometry负责呈现三维模型的类,它管理者物体的形状、纹理等。它可以由SCNGeometrySource和SCNGeometryElement来构造, 一个SCNGeometry 可以包含多个SCNGeometrySource和SCNGeometryElement对象. 还可以通过SCNMaterial定义几何形状表面的颜色或者纹理, SCNLight 定义光照效果, SCNProgram 设计OpenGL或者Metal着色语言等等。

  SCNGeometrySource 在SceneKit中就是顶点的集合. 这些点用来构成一个几何图形. 创建了一个SCNGeometrySource对象,包含有2个顶点, 可以用来绘制一条直线.

  SCNGeometryElement 用来描述如何把SCNGeometrySource中的顶点构成基本的几何图形. SCNGeometryPrimitiveType定义了在SceneKit所支持的基本几何图形的种类,

2、相关API简介

  • 初始化
//懒加载,ios初始化用init
+ (instancetype)geometry API_AVAILABLE(macos(10.9));
//通过SCNGeometrySource和SCNGeometryElement对象创建
+ (instancetype)geometryWithSources:(NSArray<SCNGeometrySource *> *)sources elements:(nullable NSArray<SCNGeometryElement *> *)elements;
  • 几何属性管理
//名字
@property(nonatomic, copy, nullable) NSString *name;
  • 几何材料的管理
//确定几何图形的外观(也就是说用什么样的材料)
@property(nonatomic, copy) NSArray<SCNMaterial *> *materials; //确定几何体的第一个材料,如果没有返回nil
@property(nonatomic, retain, nullable) SCNMaterial *firstMaterial; //新建材料material在材料数组中插入指定位置index
- (void)insertMaterial:(SCNMaterial *)material atIndex:(NSUInteger)index; //从材料数组中移除指定位置的材料
- (void)removeMaterialAtIndex:(NSUInteger)index; //新建材料material在材料数组中替换指定位置index的材料
- (void)replaceMaterialAtIndex:(NSUInteger)index withMaterial:(SCNMaterial *)material; //返回与指定名称连接的第一个材料。
- (nullable SCNMaterial *)materialWithName:(NSString *)name;
  • 几何数据的管理
//为几何图形提供顶点数据
@property(nonatomic, readonly) NSArray<SCNGeometrySource *> *geometrySources API_AVAILABLE(macos(10.10)); //返回指定语句的顶点数据
- (NSArray<SCNGeometrySource *> *)geometrySourcesForSemantic:(SCNGeometrySourceSemantic)semantic; //描述几何形状的几何元素数组
@property(nonatomic, readonly) NSArray<SCNGeometryElement *> *geometryElements API_AVAILABLE(macos(10.10)); //几何图形元素的个数
@property(nonatomic, readonly) NSInteger geometryElementCount; //返回指定索引处的几何元素
- (SCNGeometryElement *)geometryElementAtIndex:(NSInteger)elementIndex;
  • 优化的详细级别
//管理几何的外观当视图很远时。一种可以自动替换的几何图形的替代解决方案,以提高渲染性能。
//一个SCNLevelOfDetail数组,SCNLevelOfDetail代表模型的细节层次,比如获取SCNGeometry属性等。
@property(nonatomic, copy, nullable) NSArray<SCNLevelOfDetail *> *levelsOfDetail API_AVAILABLE(macos(10.9));
  • 平滑和细分几何
//指定接收器的细分级别。默认值为0。
//分等级0表示没有细分。当接收器的“tessel”属性不是nil时,对GPU进行细化。
@property(nonatomic) NSUInteger subdivisionLevel API_AVAILABLE(macos(10.10)); //自适应细分,默认值是YES,要求接收方的“tessel”属性不是nil。
@property(nonatomic) BOOL wantsAdaptiveSubdivision API_AVAILABLE(macos(10.13), ios(11.0), tvos(11.0), watchos(4.0)); //指定控制子分区的边缘折痕
//在细分后,几何元素识别几何图形的边缘应该保持锋利。这种几何元素的原始类型必须是SCNGeometryPrimitiveTypeLine。
//请参见上面的subdivisionLevel来控制子分区的级别
@property(nonatomic, retain, nullable) SCNGeometryElement *edgeCreasesElement API_AVAILABLE(macos(10.10)); //指定表面细分后边缘的平滑度或锐度。
//这个几何源的语义必须是“SCNGeometrySourceSemanticEdgeCrease”。折痕值是介于0和10之间的浮动值,其中0表示平滑,10表示无限锐。
//请参见上面的subdivisionLevel来控制子分区的级别。请参阅上面的edgecreeselement来指定边缘折痕的边缘。
@property(nonatomic, retain, nullable) SCNGeometrySource *edgeCreasesSource API_AVAILABLE(macos(10.10));
  • 管理镶嵌
//指定如何在GPU的呈现时间内对几何图形进行镶嵌。默认为零
#if SCN_ENABLE_METAL
@property(nonatomic, retain, nullable) SCNGeometryTessellator *tessellator API_AVAILABLE(macos(10.13), ios(11.0)) API_UNAVAILABLE(tvos, watchos);
#endif

3、SCNGeometrySource顶点集合相关API简介

  • 官方示例
typedef struct {
float x, y, z; // position
float nx, ny, nz; // normal
float s, t; // texture coordinates
} MyVertex; MyVertex vertices[VERTEX_COUNT] = { /* ... vertex data ... */ };
NSData *data = [NSData dataWithBytes:vertices length:sizeof(vertices)];
SCNGeometrySource *vertexSource, *normalSource, *tcoordSource; vertexSource = [SCNGeometrySource geometrySourceWithData:data
semantic:SCNGeometrySourceSemanticVertex
vectorCount:VERTEX_COUNT
floatComponents:YES
componentsPerVector: // x, y, z
bytesPerComponent:sizeof(float)
dataOffset:offsetof(MyVertex, x)
dataStride:sizeof(MyVertex)]; normalSource = [SCNGeometrySource geometrySourceWithData:data
semantic:SCNGeometrySourceSemanticNormal
vectorCount:VERTEX_COUNT
floatComponents:YES
componentsPerVector: // nx, ny, nz
bytesPerComponent:sizeof(float)
dataOffset:offsetof(MyVertex, nx)
dataStride:sizeof(MyVertex)]; tcoordSource = [SCNGeometrySource geometrySourceWithData:data
semantic:SCNGeometrySourceSemanticTexcoord
vectorCount:VERTEX_COUNT
floatComponents:YES
componentsPerVector: // s, t
bytesPerComponent:sizeof(float)
dataOffset:offsetof(MyVertex, s)
dataStride:sizeof(MyVertex)];
  • 创建几何源
/**
从给定的数据和参数中创建并返回一个几何源。 @param data 几何数据。
@param semantic 枚举值SCNGeometrySourceSemantic
@param vectorCount 几何源向量的个数。
@param floatComponents 指示向量组件是否为浮点值的标志。
@param componentsPerVector 向量中标量分量的数目。
@param bytesPerComponent 表示向量组件的字节数。
@param offset 从数据开始的偏移量
@param stride 数据中从一个向量到另一个向量的字节数。
@return SCNGeometrySource
*/
+ (instancetype)geometrySourceWithData:(NSData *)data semantic:(SCNGeometrySourceSemantic)semantic vectorCount:(NSInteger)vectorCount floatComponents:(BOOL)floatComponents componentsPerVector:(NSInteger)componentsPerVector bytesPerComponent:(NSInteger)bytesPerComponent dataOffset:(NSInteger)offset dataStride:(NSInteger)stride; /**
从顶点位置的数组中创建一个几何源。 @param vertices 顶点
@param count 顶点数量
@return SCNGeometrySource
*/
+ (instancetype)geometrySourceWithVertices:(const SCNVector3 *)vertices count:(NSInteger)count; /**
从法向量的数组中创建一个几何源 @param normals 法线的缓冲区。
@param count 法线的数量。
@return SCNGeometrySource
*/
+ (instancetype)geometrySourceWithNormals:(const SCNVector3 *)normals count:(NSInteger)count; /**
从纹理坐标点的数组中创建一个几何源。 @param texcoord 纹理坐标的缓冲区。
@param count 纹理坐标点的数量。
@return SCNGeometrySource
*/
+ (instancetype)geometrySourceWithTextureCoordinates:(const CGPoint *)texcoord count:(NSInteger)count;
  • 检查几何来源
//几何图形的数据来源
@property(nonatomic, readonly) NSData *data; //每个顶点的语义值 枚举
@property(nonatomic, readonly) SCNGeometrySourceSemantic semantic; //向量的个数
@property(nonatomic, readonly) NSInteger vectorCount; //该值指示向量组件是否为浮点值。
@property(nonatomic, readonly) BOOL floatComponents; //标量的组件的数量
@property(nonatomic, readonly) NSInteger componentsPerVector; //每个向量组件的大小
@property(nonatomic, readonly) NSInteger bytesPerComponent; //以字节为单位的偏移量,从数据的开始到第一个在几何源中使用的向量组件。
@property(nonatomic, readonly) NSInteger dataOffset; //数据中从一个向量到另一个向量的字节数。
@property(nonatomic, readonly) NSInteger dataStride;
  • 创建GPU-Mutable几何来源
/**
创建一个几何源,其顶点数据位于指定的金属缓冲区中,允许通过金属计算着色器进行修改。 @param mtlBuffer 一个金属缓冲器。
@param vertexFormat 顶点格式
@param semantic 枚举SCNGeometrySourceSemantic
@param vertexCount 顶点的数目。
@param offset 数据开始时的偏移量
@param stride 从一个向量到数据中的下一个向量的字节数。
@return SCNGeometrySource 试图修改SCNSceneRenderer委托调用之外的金属缓冲区的讨论是没有定义的。
通常使用它在willRenderScene回调中修改MTLBuffer,在用户自己的命令缓冲区中使用计算内核或顶点函数。所以类似:
- (void)renderer:(id <SCNSceneRenderer>)aRenderer willRenderScene:(SCNScene *)scene atTime:(NSTimeInterval)time
{
// 请求新的命令缓冲区。
id <MTLCommandBuffer> myCommandBuffer = [aRenderer.commandQueue commandBuffer]; // 获取一个计算命令编码器。
id <MTLComputeCommandEncoder> myComputeCommandEncoder = [myCommandBuffer computeCommandEncoder]; // 配置计算命令编码器的管道状态、缓冲区输入等…
//...
// 调度
[myComputeCommandEncoder dispatchThreadgroups:numberOfWorkingGroups threadsPerThreadgroup:numberOfThreads];
[myComputeCommandEncoder endEncoding];
[myCommandBuffer commit];
}
*/
+ (instancetype)geometrySourceWithBuffer:(id <MTLBuffer>)mtlBuffer vertexFormat:(MTLVertexFormat)vertexFormat semantic:(SCNGeometrySourceSemantic)semantic vertexCount:(NSInteger)vertexCount dataOffset:(NSInteger)offset dataStride:(NSInteger)stride API_AVAILABLE(macos(10.11), ios(9.0));
  • SCNGeometrySourceSemantic枚举值
#if defined(SWIFT_SDK_OVERLAY2_SCENEKIT_EPOCH) && SWIFT_SDK_OVERLAY2_SCENEKIT_EPOCH >= 3
typedef NSString * SCNGeometrySourceSemantic NS_EXTENSIBLE_STRING_ENUM;
#else
typedef NSString * SCNGeometrySourceSemantic;
#endif FOUNDATION_EXTERN SCNGeometrySourceSemantic const SCNGeometrySourceSemanticVertex;//顶点位置数据的语义
FOUNDATION_EXTERN SCNGeometrySourceSemantic const SCNGeometrySourceSemanticNormal;//表面正常数据的语义
FOUNDATION_EXTERN SCNGeometrySourceSemantic const SCNGeometrySourceSemanticColor;//每个顶点颜色数据的语义。
FOUNDATION_EXTERN SCNGeometrySourceSemantic const SCNGeometrySourceSemanticTexcoord;//纹理坐标数据的语义。
FOUNDATION_EXTERN SCNGeometrySourceSemantic const SCNGeometrySourceSemanticTangent API_AVAILABLE(macos(10.12), ios(10.0), tvos(10.0));//表面切矢量数据的语义
FOUNDATION_EXTERN SCNGeometrySourceSemantic const SCNGeometrySourceSemanticVertexCrease API_AVAILABLE(macos(10.10));//用于细分曲面的顶点折痕数据的语义
FOUNDATION_EXTERN SCNGeometrySourceSemantic const SCNGeometrySourceSemanticEdgeCrease API_AVAILABLE(macos(10.10));//用于细分曲面的边缘折痕数据的语义
FOUNDATION_EXTERN SCNGeometrySourceSemantic const SCNGeometrySourceSemanticBoneWeights API_AVAILABLE(macos(10.10));//骨重量数据的语义,用于皮肤表面的骨骼动画
FOUNDATION_EXTERN SCNGeometrySourceSemantic const SCNGeometrySourceSemanticBoneIndices API_AVAILABLE(macos(10.10));//骨指数数据的语义,用于皮肤表面的骨骼动画。

4、SCNGeometryElement几何元素相关API简介

  • 初始化
/**
从指定的数据和选项创建一个几何元素 @param data 包含元素索引的数据。您可以通过nil来使用隐式顶点排序(0,1,2…)。
@param primitiveType SCNGeometryPrimitiveType枚举值
@param primitiveCount 数据中的基元数。
@param bytesPerIndex 表示数据中单个索引值的字节数。
@return SCNGeometryElement
*/
+ (instancetype)geometryElementWithData:(nullable NSData *)data primitiveType:(SCNGeometryPrimitiveType)primitiveType primitiveCount:(NSInteger)primitiveCount bytesPerIndex:(NSInteger)bytesPerIndex;
  • 使用索引
//描述几何元素的数据。
@property(nonatomic, readonly) NSData *data; //SCNGeometryPrimitiveType 枚举值
@property(nonatomic, readonly) SCNGeometryPrimitiveType primitiveType; //元素中的基元数。
@property(nonatomic, readonly) NSInteger primitiveCount; //范围渲染。默认为[NSNotFound,0]
//当将范围的位置设置为NSNotFound时,将呈现整个几何元素。
@property(nonatomic) NSRange primitiveRange API_AVAILABLE(macos(10.13), ios(11.0), tvos(11.0), watchos(4.0)); //表示元素数据中的每个索引值的字节数。
@property(nonatomic, readonly) NSInteger bytesPerIndex;
  • SCNGeometryPrimitiveType枚举值
typedef NS_ENUM(NSInteger, SCNGeometryPrimitiveType) {
SCNGeometryPrimitiveTypeTriangles = ,//几何元素的数据是一个三角形序列,每个三角形由三个新的顶点描述。
SCNGeometryPrimitiveTypeTriangleStrip = ,//几何元素的数据是一个三角形序列,每个三角形由一个新顶点和前一个三角形的两个顶点描述。
SCNGeometryPrimitiveTypeLine = ,//几何元素的数据是一个线段序列,每个线段由两个新的顶点描述。
SCNGeometryPrimitiveTypePoint = ,//几何元素的数据是一个未连接点的序列。
#if defined(SWIFT_SDK_OVERLAY2_SCENEKIT_EPOCH) && SWIFT_SDK_OVERLAY2_SCENEKIT_EPOCH >= 2
SCNGeometryPrimitiveTypePolygon API_AVAILABLE(macos(10.12), ios(10.0), tvos(10.0)) = //多边形
#endif
};
#if !(defined(SWIFT_SDK_OVERLAY2_SCENEKIT_EPOCH) && SWIFT_SDK_OVERLAY2_SCENEKIT_EPOCH >= 2)
#define SCNGeometryPrimitiveTypePolygon (SCNGeometryPrimitiveType)4
#endif
  • 呈现点云
//使用这些属性将一个几何图形显示为一个点集合,而不是一个固体表面或线框。

//几何元素中各点的宽度,如几何图形中的局部三维坐标空间。默认1
@property(nonatomic) CGFloat pointSize API_AVAILABLE(macos(10.13), ios(11.0), tvos(11.0), watchos(4.0)); //在屏幕点上测量的最小的半径,用来渲染几何元素中的任何一点。默认1
@property(nonatomic) CGFloat minimumPointScreenSpaceRadius API_AVAILABLE(macos(10.13), ios(11.0), tvos(11.0), watchos(4.0)); //最大的半径,测量在屏幕上的点,在其中渲染任何一点的几何元素。默认1
@property(nonatomic) CGFloat maximumPointScreenSpaceRadius API_AVAILABLE(macos(10.13), ios(11.0), tvos(11.0), watchos(4.0));

5、SCNGeometryTessellator几何镶嵌者相关API简介

  • 实例属性
//指定用于每个贴片镶嵌因素的比例因子。默认为1。
@property(nonatomic) CGFloat tessellationFactorScale; //指定镶嵌划分模式。默认为MTLTessellationPartitionModeInteger。
@property(nonatomic) MTLTessellationPartitionMode tessellationPartitionMode;
typedef NS_ENUM(NSUInteger, MTLTessellationPartitionMode) {
MTLTessellationPartitionModePow2 = ,
MTLTessellationPartitionModeInteger = ,
MTLTessellationPartitionModeFractionalOdd = ,
MTLTessellationPartitionModeFractionalEven = ,
} NS_ENUM_AVAILABLE(10_12, 10_0); //指定镶嵌应该是统一的还是自适应的。默认为NO
@property(nonatomic, getter=isAdaptive) BOOL adaptive; //指定在屏幕空间中是否应该调整镶嵌的水平。默认为NO
@property(nonatomic, getter=isScreenSpace) BOOL screenSpace; //指定边缘镶嵌因子。默认为1。
@property(nonatomic) CGFloat edgeTessellationFactor; //指定内部镶嵌因素。默认为1
@property(nonatomic) CGFloat insideTessellationFactor; //指定最大边长。默认为1。
@property(nonatomic) CGFloat maximumEdgeLength;
  • 选择一个平滑算法SCNTessellationSmoothingMode枚举
//默认是SCNTessellationSmoothingModeNone
@property(nonatomic) SCNTessellationSmoothingMode smoothingMode;
typedef NS_ENUM(NSInteger, SCNTessellationSmoothingMode) {
SCNTessellationSmoothingModeNone = ,
SCNTessellationSmoothingModePNTriangles,//PN-Triangles是控制曲面的算法法,P表现point,N表示法线,Triangles说明总有有3个点其对应的法线,这个算法很适用于实时渲染中的曲面生成,空间的最基本的面就是三角形面。
SCNTessellationSmoothingModePhong// phong 光照模型渲染效果。
} API_AVAILABLE(macos(10.13), ios(11.0)) API_UNAVAILABLE(tvos, watchos);

iOS开发之SceneKit框架--SCNGeometry.h的更多相关文章

  1. iOS开发之SceneKit框架--SCNNode.h

    1.SCNNode简介 SCNNode是场景图的结构元素,表示3D坐标空间中的位置和变换,您可以将模型,灯光,相机或其他可显示内容附加到该元素.也可以对其做动画. 2.相关API简介 初始化方法 // ...

  2. iOS开发之SceneKit框架--SCNAction.h

    1.SCNAction简介 主要负责节点SCNNode的属性,实现node的渐变.移动.出现.消失.实现动画等. 2.相关API 节点的移动(earthNode的初始坐标(5,0,0)) //从当前位 ...

  3. iOS开发之SceneKit框架--SCNLight.h

    1.SCNLight简介 用于添加光源,连接到一个节点照亮现场,可以给场景添加不同的灯光,模拟逼真的环境. 2.四种灯光的简介 添加一个box立方体.一个tube圆柱管道和一个地板floor,没有灯光 ...

  4. iOS开发之SceneKit框架--SCNParametricGeometry.h

    1.SCNParametricGeometry简介 SCNParametricGeometry用于创建简单的3D模型,比如SCNPlane 平面.SCNPyramid 锥形(金字塔).SCNBox 立 ...

  5. iOS开发之SceneKit框架--SCNCamera.h

    1.SCNCamera简介 被称为照相机或者摄像机,可以附加到节点以提供显示场景的角度.其实就是用户视角和人的眼睛一样. 2.相关API简介 初始化 //懒加载 + (instancetype)cam ...

  6. iOS开发之SceneKit框架--SCNScene.h

    1.SCNScene SCNScene是一个场景图——具有附加几何形状.光照.摄像机和其他属性的节点的层次结构,共同形成可显示的3D场景. 2.相关API简介 初始化方法 //懒加载 + (insta ...

  7. iOS开发之SceneKit框架--SCNView.h

    1.SCNView 在macOS中,SCNView是NSView的子类,在iOS和tvOS中,SCNView是UIView的子类.SCNView用于显示SceneKit的3D场景,而需要设置场景的相关 ...

  8. iOS开发之SceneKit框架--加载多个模型.dae/.scn文件

    1.通过SCNGeometry或子类SCNParametricGeometry创建 相关链接:iOS开发之SceneKit框架--SCNGeometry.h iOS开发之SceneKit框架--SCN ...

  9. iOS开发之SceneKit框架--实战地月系统围绕太阳旋转

    1.创建地月太阳系统scn文件 注意:moon在earth结构下,earth和moon在sun结构下. 2.获取scn中模型的对应节点和自转(太阳为例) 获取节点: name是对应的Identity字 ...

随机推荐

  1. 关于mysql的权限的问题

    昨天因为同学的mysql数据库不知道做了什么操作,从而导致root用户无法使用了 具体是使用root用户不需要密码 进去只能看 看到 infomation_schema 表 ,感觉root权限丢失了 ...

  2. 【学术篇】CF935E Fafa and Ancient Mathematics 树形dp

    前言 这是一道cf的比赛题.. 比赛的时候C题因为自己加了一个很显然不对的特判WA了7次但找不出原因就弃疗了... 然后就想划水, 但是只做了AB又不太好... 估计rating会掉惨 (然而事实证明 ...

  3. 基本TCP Sockets编程

    一.socket 函数 #include <sys/socket.h> int socket (int family, int type, int protocol); Returns: ...

  4. echarts图表自适应,容器宽度设置为百分比,但是图表显示不全,缩到一起

    <div  id="chartContainer" style="height:100%;width:100%;"></div> cha ...

  5. Dockfile中的命令如何在.sh中执行

    有类似如下内容的Dokefile文件.1 RUN cd /tmp/patch \ && /lib/python3./site-packages/moduleA/a.* \ && ...

  6. 发现一个新的远程软件 gotohttp

    之前直到远程桌面连接是TeamViewer 替换的原因是: 被控制端版本 11.0.x (很久以前安装的),而我本地的Teamviewer是 14.x, 去连接,好像提示被控制端的版本太低:本地使用 ...

  7. CSIC_716_20191128【多态、绑定与非绑定方法、isinstance与issubclass 】

    多态 what: 同一个事物有不同的形态. 多态的目的:在不知道对象具体类型的情况下,统一对象调用方法的规范.(通俗讲,即规定实现同样功能的方法,一定要起同样的名字). 多态的表现形式之一就是继承,先 ...

  8. bzoj 2257 (JSOI 2009) 瓶子与燃料

    Description jyy就一直想着尽快回地球,可惜他飞船的燃料不够了. 有一天他又去向火星人要燃料,这次火星人答应了,要jyy用飞船上的瓶子来换.jyy 的飞船上共有 N个瓶子(1<=N& ...

  9. UVA 240 Variable Radix Huffman Encoding

    题目链接:https://vjudge.net/problem/UVA-240 题目大意 哈夫曼编码是一种最优编码方法.根据已知源字母表中字符出现的频率,将源字母表中字符编码为目标字母表中字符,最优的 ...

  10. Python3 From Zero——{最初的意识:008~初级实例演练}

    一.构显国际橡棋8x8棋盘 #!/usr/bin/env python3 #-*- coding:utf-8 -*- color_0="\033[41m \033[00m" col ...