Home Reference Source Repository

js/SceneKit/SCNVector3ToGLKVector3.js

'use strict'

//import GLKVector3 from '../undefined/GLKVector3'
import SCNVector3 from './SCNVector3'

/**
 * Returns a three-element GLKit vector structure corresponding to a SceneKit vector structure.
 * @access public
 * @param {SCNVector3} vector - A three-element SceneKit vector structure.
 * @returns {GLKVector3} - 
 * @see https://developer.apple.com/documentation/scenekit/1409651-scnvector3toglkvector3
 */
const SCNVector3ToGLKVector3 = function(vector) {
  return null
}

export default SCNVector3ToGLKVector3