Home Reference Source Repository

js/SceneKit/SCNMatrix4ToMat4.js

  1. 'use strict'
  2.  
  3. //import SCNMatrix4 from './SCNMatrix4'
  4.  
  5. /**
  6. * @access public
  7. * @type {function}
  8. * @param {SCNMatrix4} m -
  9. * @returns {number[][]} -
  10. * @see https://developer.apple.com/documentation/scenekit/1523928-scnmatrix4tomat4
  11. */
  12. const SCNMatrix4ToMat4 = function(m) {
  13. return null
  14. }
  15.  
  16. export default SCNMatrix4ToMat4