17 lines
357 B
Swift
17 lines
357 B
Swift
//
|
|
// PointCloud.swift
|
|
// ThreeDScanner
|
|
//
|
|
// Created by Steven Roach on 4/3/18.
|
|
// Copyright © 2018 Steven Roach. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import SceneKit
|
|
|
|
internal struct PointCloud {
|
|
internal var points: [vector_float3] = []
|
|
internal var framePointsSizes: [Int32] = []
|
|
internal var frameViewpoints: [SCNVector3] = []
|
|
}
|