js/SceneKit/SCNMatrix4ToMat4.js
- 'use strict'
-
- //import SCNMatrix4 from './SCNMatrix4'
-
- /**
- * @access public
- * @type {function}
- * @param {SCNMatrix4} m -
- * @returns {number[][]} -
- * @see https://developer.apple.com/documentation/scenekit/1523928-scnmatrix4tomat4
- */
- const SCNMatrix4ToMat4 = function(m) {
- return null
- }
-
- export default SCNMatrix4ToMat4