• ARKit的使用


    //创建场景

            let scene = SCNScene()

            /*

             //1.几何

             let box = SCNBox.init( 0.1, height: 0.1, length: 0.1, chamferRadius: 0  )

             //2.渲染

             let materil = SCNMaterial.init()

             materil.diffuse.contents = UIColor.red

             box.materials = [materil]

             

             //3.节点

             let node = SCNNode.init(geometry: box)

             node.position = SCNVector3.init(0, 0, -0.5)

             scene.rootNode.addChildNode(node)

             

             */

            

            //几何 渲染

            let text = SCNText.init(string: "hello ARKit", extrusionDepth: 0)

            text.font = UIFont.init(name: "Future", size: 0.15)

            text.firstMaterial?.diffuse.contents = UIColor.orange

            text.firstMaterial?.specular.contents = UIColor.white

            //几点

            let textNode = SCNNode.init(geometry: text)

            textNode.position = SCNVector3.init(0, 0, -0.5 )

    //        textNode.scale =

            

            scene.rootNode.addChildNode(textNode)

            

            

            

            //把场景显示出来

            sceneView.scene = scene;

            

  • 相关阅读:
    c++ 指定目录下的文件遍历
    c++ 实现键盘钩子
    c++ 用模板类实现顺序储存的线性表
    c++ 递归算法实现排列组合
    matlab 基础知识
    QT 给工程添加图片
    QT5.9 QString和字符串转换的乱码问题
    【内核】——进程3,内核同步
    Java多线程——Thread的native底层实现
    【内核】——文件和文件系统的内部结构4 系统调用的实现
  • 原文地址:https://www.cnblogs.com/daxueshan/p/7643098.html
Copyright © 2020-2023  润新知