Home Reference Source Repository

js/SceneKit/SCNMatrix4ToGLKMatrix4.js

'use strict'

//import GLKMatrix4 from '../undefined/GLKMatrix4'
//import SCNMatrix4 from './SCNMatrix4'

/**
 * Returns a GLKit matrix corresponding to a SceneKit matrix.
 * @access public
 * @param {SCNMatrix4} mat - A SceneKit matrix.
 * @returns {GLKMatrix4} - 
 * @see https://developer.apple.com/documentation/scenekit/1409703-scnmatrix4toglkmatrix4
 */
const SCNMatrix4ToGLKMatrix4 = function(mat) {
  return null
}

export default SCNMatrix4ToGLKMatrix4