StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
module.exports = {
|
|
create: require('./create')
|
|
, clone: require('./clone')
|
|
, copy: require('./copy')
|
|
, identity: require('./identity')
|
|
, transpose: require('./transpose')
|
|
, invert: require('./invert')
|
|
, adjoint: require('./adjoint')
|
|
, determinant: require('./determinant')
|
|
, multiply: require('./multiply')
|
|
, translate: require('./translate')
|
|
, scale: require('./scale')
|
|
, rotate: require('./rotate')
|
|
, rotateX: require('./rotateX')
|
|
, rotateY: require('./rotateY')
|
|
, rotateZ: require('./rotateZ')
|
|
, fromRotation: require('./fromRotation')
|
|
, fromRotationTranslation: require('./fromRotationTranslation')
|
|
, fromScaling: require('./fromScaling')
|
|
, fromTranslation: require('./fromTranslation')
|
|
, fromXRotation: require('./fromXRotation')
|
|
, fromYRotation: require('./fromYRotation')
|
|
, fromZRotation: require('./fromZRotation')
|
|
, fromQuat: require('./fromQuat')
|
|
, frustum: require('./frustum')
|
|
, perspective: require('./perspective')
|
|
, perspectiveFromFieldOfView: require('./perspectiveFromFieldOfView')
|
|
, ortho: require('./ortho')
|
|
, lookAt: require('./lookAt')
|
|
, str: require('./str')
|
|
}
|
|
|