js/SceneKit/SCNVector4FromGLKVector4.js
- 'use strict'
-
- //import SCNVector4 from './SCNVector4'
- //import GLKVector4 from '../undefined/GLKVector4'
-
- /**
- * Returns a four-element SceneKit vector structure corresponding to a GLKit vector structure.
- * @access public
- * @param {GLKVector4} vector - A four-element GLKit vector structure.
- * @returns {SCNVector4} -
- * @see https://developer.apple.com/documentation/scenekit/1409729-scnvector4fromglkvector4
- */
- const SCNVector4FromGLKVector4 = function(vector) {
- return null
- }
-
- export default SCNVector4FromGLKVector4