Home Reference Source Repository

js/SceneKit/SCNVector4ToGLKVector4.js

'use strict'

//import GLKVector4 from '../undefined/GLKVector4'
//import SCNVector4 from './SCNVector4'

/**
 * Returns a four-element GLKit vector structure corresponding to a SceneKit vector structure.
 * @access public
 * @param {SCNVector4} vector - A four-element SceneKit vector structure.
 * @returns {GLKVector4} - 
 * @see https://developer.apple.com/documentation/scenekit/1409663-scnvector4toglkvector4
 */
const SCNVector4ToGLKVector4 = function(vector) {
  return null
}

export default SCNVector4ToGLKVector4