@vived/core 1.2.2 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/AppObject/AppObject.js +59 -0
- package/dist/cjs/AppObject/AppObject.js.map +1 -0
- package/dist/cjs/AppObject/AppObject.test.js +113 -0
- package/dist/cjs/AppObject/AppObject.test.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectComponent.js +82 -0
- package/dist/cjs/AppObject/AppObjectComponent.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectComponent.test.js +132 -0
- package/dist/cjs/AppObject/AppObjectComponent.test.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectController.js +12 -0
- package/dist/cjs/AppObject/AppObjectController.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectEntity.js +38 -0
- package/dist/cjs/AppObject/AppObjectEntity.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectEntity.test.js +108 -0
- package/dist/cjs/AppObject/AppObjectEntity.test.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectEntityRepo.js +56 -0
- package/dist/cjs/AppObject/AppObjectEntityRepo.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectEntityRepo.test.js +149 -0
- package/dist/cjs/AppObject/AppObjectEntityRepo.test.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectPM.js +40 -0
- package/dist/cjs/AppObject/AppObjectPM.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectPM.test.js +103 -0
- package/dist/cjs/AppObject/AppObjectPM.test.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectRepo.js +133 -0
- package/dist/cjs/AppObject/AppObjectRepo.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectRepo.test.js +213 -0
- package/dist/cjs/AppObject/AppObjectRepo.test.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectUC.js +12 -0
- package/dist/cjs/AppObject/AppObjectUC.js.map +1 -0
- package/dist/cjs/AppObject/AppObjectView.js +12 -0
- package/dist/cjs/AppObject/AppObjectView.js.map +1 -0
- package/dist/cjs/AppObject/getSingletonComponent.js +7 -0
- package/dist/cjs/AppObject/getSingletonComponent.js.map +1 -0
- package/dist/cjs/AppObject/getSingletonComponent.test.js +13 -0
- package/dist/cjs/AppObject/getSingletonComponent.test.js.map +1 -0
- package/dist/cjs/AppObject/index.js +27 -0
- package/dist/cjs/AppObject/index.js.map +1 -0
- package/dist/cjs/AppObject/printAppObjectDetails.js +18 -0
- package/dist/cjs/AppObject/printAppObjectDetails.js.map +1 -0
- package/dist/cjs/Entities/MemoizedAngle.js +23 -0
- package/dist/cjs/Entities/MemoizedAngle.js.map +1 -0
- package/dist/cjs/Entities/MemoizedAngle.test.js +30 -0
- package/dist/cjs/Entities/MemoizedAngle.test.js.map +1 -0
- package/dist/cjs/Entities/MemoizedBoolean.js +23 -0
- package/dist/cjs/Entities/MemoizedBoolean.js.map +1 -0
- package/dist/cjs/Entities/MemoizedBoolean.test.js +34 -0
- package/dist/cjs/Entities/MemoizedBoolean.test.js.map +1 -0
- package/dist/cjs/Entities/MemoizedColor.js +24 -0
- package/dist/cjs/Entities/MemoizedColor.js.map +1 -0
- package/dist/cjs/Entities/MemoizedColor.test.js +32 -0
- package/dist/cjs/Entities/MemoizedColor.test.js.map +1 -0
- package/dist/cjs/Entities/MemoizedNumber.js +23 -0
- package/dist/cjs/Entities/MemoizedNumber.js.map +1 -0
- package/dist/cjs/Entities/MemoizedNumber.test.js +29 -0
- package/dist/cjs/Entities/MemoizedNumber.test.js.map +1 -0
- package/dist/cjs/Entities/MemoizedQuaternion.js +24 -0
- package/dist/cjs/Entities/MemoizedQuaternion.js.map +1 -0
- package/dist/cjs/Entities/MemoizedQuaternion.test.js +32 -0
- package/dist/cjs/Entities/MemoizedQuaternion.test.js.map +1 -0
- package/dist/cjs/Entities/MemoizedString.js +23 -0
- package/dist/cjs/Entities/MemoizedString.js.map +1 -0
- package/dist/cjs/Entities/MemoizedString.test.js +29 -0
- package/dist/cjs/Entities/MemoizedString.test.js.map +1 -0
- package/dist/cjs/Entities/MemoizedVector2.js +24 -0
- package/dist/cjs/Entities/MemoizedVector2.js.map +1 -0
- package/dist/cjs/Entities/MemoizedVector2.test.js +32 -0
- package/dist/cjs/Entities/MemoizedVector2.test.js.map +1 -0
- package/dist/cjs/Entities/MemoizedVector3.js +24 -0
- package/dist/cjs/Entities/MemoizedVector3.js.map +1 -0
- package/dist/cjs/Entities/MemoizedVector3.test.js +32 -0
- package/dist/cjs/Entities/MemoizedVector3.test.js.map +1 -0
- package/dist/cjs/Entities/ObservableEntity.js +20 -0
- package/dist/cjs/Entities/ObservableEntity.js.map +1 -0
- package/dist/cjs/Entities/ObservableEntity.test.js +25 -0
- package/dist/cjs/Entities/ObservableEntity.test.js.map +1 -0
- package/dist/cjs/Entities/ObserverList.js +27 -0
- package/dist/cjs/Entities/ObserverList.js.map +1 -0
- package/dist/cjs/Entities/ObserverList.test.js +44 -0
- package/dist/cjs/Entities/ObserverList.test.js.map +1 -0
- package/dist/cjs/Entities/RangedNumber.js +36 -0
- package/dist/cjs/Entities/RangedNumber.js.map +1 -0
- package/dist/cjs/Entities/RangedNumber.test.js +96 -0
- package/dist/cjs/Entities/RangedNumber.test.js.map +1 -0
- package/dist/cjs/Entities/index.js +28 -0
- package/dist/cjs/Entities/index.js.map +1 -0
- package/dist/cjs/Types/AppBoundary.js +3 -0
- package/dist/cjs/Types/AppBoundary.js.map +1 -0
- package/dist/cjs/Types/EaseFn.js +3 -0
- package/dist/cjs/Types/EaseFn.js.map +1 -0
- package/dist/cjs/Types/PmAdapter.js +3 -0
- package/dist/cjs/Types/PmAdapter.js.map +1 -0
- package/dist/cjs/Types/SingletonPmAdapter.js +3 -0
- package/dist/cjs/Types/SingletonPmAdapter.js.map +1 -0
- package/dist/cjs/Types/index.js +21 -0
- package/dist/cjs/Types/index.js.map +1 -0
- package/dist/cjs/Utilities/LengthConverters.js +21 -0
- package/dist/cjs/Utilities/LengthConverters.js.map +1 -0
- package/dist/cjs/Utilities/LengthConverters.test.js +24 -0
- package/dist/cjs/Utilities/LengthConverters.test.js.map +1 -0
- package/dist/cjs/Utilities/LerpNumber.js +85 -0
- package/dist/cjs/Utilities/LerpNumber.js.map +1 -0
- package/dist/cjs/Utilities/LerpNumber.test.js +90 -0
- package/dist/cjs/Utilities/LerpNumber.test.js.map +1 -0
- package/dist/cjs/Utilities/degreesToRadians.js +7 -0
- package/dist/cjs/Utilities/degreesToRadians.js.map +1 -0
- package/dist/cjs/Utilities/degreesToRadians.test.js +9 -0
- package/dist/cjs/Utilities/degreesToRadians.test.js.map +1 -0
- package/dist/cjs/Utilities/easeFunctions.js +208 -0
- package/dist/cjs/Utilities/easeFunctions.js.map +1 -0
- package/dist/cjs/Utilities/easeFunctions.test.js +209 -0
- package/dist/cjs/Utilities/easeFunctions.test.js.map +1 -0
- package/dist/cjs/Utilities/generateUniqueID.js +8 -0
- package/dist/cjs/Utilities/generateUniqueID.js.map +1 -0
- package/dist/cjs/Utilities/index.js +22 -0
- package/dist/cjs/Utilities/index.js.map +1 -0
- package/dist/cjs/Utilities/interpolateNumber.js +18 -0
- package/dist/cjs/Utilities/interpolateNumber.js.map +1 -0
- package/dist/cjs/Utilities/interpolateNumber.test.js +26 -0
- package/dist/cjs/Utilities/interpolateNumber.test.js.map +1 -0
- package/dist/cjs/ValueObjects/Angle.js +47 -0
- package/dist/cjs/ValueObjects/Angle.js.map +1 -0
- package/dist/cjs/ValueObjects/Angle.test.js +28 -0
- package/dist/cjs/ValueObjects/Angle.test.js.map +1 -0
- package/dist/cjs/ValueObjects/Color.js +859 -0
- package/dist/cjs/ValueObjects/Color.js.map +1 -0
- package/dist/cjs/ValueObjects/Color.test.js +147 -0
- package/dist/cjs/ValueObjects/Color.test.js.map +1 -0
- package/dist/cjs/ValueObjects/LineSegment2D.js +72 -0
- package/dist/cjs/ValueObjects/LineSegment2D.js.map +1 -0
- package/dist/cjs/ValueObjects/LineSegment2D.test.js +102 -0
- package/dist/cjs/ValueObjects/LineSegment2D.test.js.map +1 -0
- package/dist/cjs/ValueObjects/Matrix.js +466 -0
- package/dist/cjs/ValueObjects/Matrix.js.map +1 -0
- package/dist/cjs/ValueObjects/Matrix.test.js +385 -0
- package/dist/cjs/ValueObjects/Matrix.test.js.map +1 -0
- package/dist/cjs/ValueObjects/ParametricLine.js +77 -0
- package/dist/cjs/ValueObjects/ParametricLine.js.map +1 -0
- package/dist/cjs/ValueObjects/ParametricLine.test.js +126 -0
- package/dist/cjs/ValueObjects/ParametricLine.test.js.map +1 -0
- package/dist/cjs/ValueObjects/ParametricPlane.js +65 -0
- package/dist/cjs/ValueObjects/ParametricPlane.js.map +1 -0
- package/dist/cjs/ValueObjects/ParametricPlane.test.js +101 -0
- package/dist/cjs/ValueObjects/ParametricPlane.test.js.map +1 -0
- package/dist/cjs/ValueObjects/Quaternion.js +290 -0
- package/dist/cjs/ValueObjects/Quaternion.js.map +1 -0
- package/dist/cjs/ValueObjects/Quaternion.test.js +240 -0
- package/dist/cjs/ValueObjects/Quaternion.test.js.map +1 -0
- package/dist/cjs/ValueObjects/Rectangle.js +24 -0
- package/dist/cjs/ValueObjects/Rectangle.js.map +1 -0
- package/dist/cjs/ValueObjects/Rectangle.test.js +32 -0
- package/dist/cjs/ValueObjects/Rectangle.test.js.map +1 -0
- package/dist/cjs/ValueObjects/Vector2.js +184 -0
- package/dist/cjs/ValueObjects/Vector2.js.map +1 -0
- package/dist/cjs/ValueObjects/Vector2.test.js +136 -0
- package/dist/cjs/ValueObjects/Vector2.test.js.map +1 -0
- package/dist/cjs/ValueObjects/Vector3.js +231 -0
- package/dist/cjs/ValueObjects/Vector3.js.map +1 -0
- package/dist/cjs/ValueObjects/Vector3.test.js +188 -0
- package/dist/cjs/ValueObjects/Vector3.test.js.map +1 -0
- package/dist/cjs/ValueObjects/index.js +27 -0
- package/dist/cjs/ValueObjects/index.js.map +1 -0
- package/dist/cjs/index.js +22 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/esm/AppObject/AppObject.js +54 -0
- package/dist/esm/AppObject/AppObject.js.map +1 -0
- package/dist/esm/AppObject/AppObject.test.js +110 -0
- package/dist/esm/AppObject/AppObject.test.js.map +1 -0
- package/dist/esm/AppObject/AppObjectComponent.js +78 -0
- package/dist/esm/AppObject/AppObjectComponent.js.map +1 -0
- package/dist/esm/AppObject/AppObjectComponent.test.js +130 -0
- package/dist/esm/AppObject/AppObjectComponent.test.js.map +1 -0
- package/dist/esm/AppObject/AppObjectController.js +8 -0
- package/dist/esm/AppObject/AppObjectController.js.map +1 -0
- package/dist/esm/AppObject/AppObjectEntity.js +34 -0
- package/dist/esm/AppObject/AppObjectEntity.js.map +1 -0
- package/dist/esm/AppObject/AppObjectEntity.test.js +106 -0
- package/dist/esm/AppObject/AppObjectEntity.test.js.map +1 -0
- package/dist/esm/AppObject/AppObjectEntityRepo.js +52 -0
- package/dist/esm/AppObject/AppObjectEntityRepo.js.map +1 -0
- package/dist/esm/AppObject/AppObjectEntityRepo.test.js +147 -0
- package/dist/esm/AppObject/AppObjectEntityRepo.test.js.map +1 -0
- package/dist/esm/AppObject/AppObjectPM.js +36 -0
- package/dist/esm/AppObject/AppObjectPM.js.map +1 -0
- package/dist/esm/AppObject/AppObjectPM.test.js +101 -0
- package/dist/esm/AppObject/AppObjectPM.test.js.map +1 -0
- package/dist/esm/AppObject/AppObjectRepo.js +128 -0
- package/dist/esm/AppObject/AppObjectRepo.js.map +1 -0
- package/dist/esm/AppObject/AppObjectRepo.test.js +211 -0
- package/dist/esm/AppObject/AppObjectRepo.test.js.map +1 -0
- package/dist/esm/AppObject/AppObjectUC.js +8 -0
- package/dist/esm/AppObject/AppObjectUC.js.map +1 -0
- package/dist/esm/AppObject/AppObjectView.js +8 -0
- package/dist/esm/AppObject/AppObjectView.js.map +1 -0
- package/dist/esm/AppObject/getSingletonComponent.js +4 -0
- package/dist/esm/AppObject/getSingletonComponent.js.map +1 -0
- package/dist/esm/AppObject/getSingletonComponent.test.js +11 -0
- package/dist/esm/AppObject/getSingletonComponent.test.js.map +1 -0
- package/dist/esm/AppObject/index.js +11 -0
- package/dist/esm/AppObject/index.js.map +1 -0
- package/dist/esm/AppObject/printAppObjectDetails.js +15 -0
- package/dist/esm/AppObject/printAppObjectDetails.js.map +1 -0
- package/dist/esm/Entities/MemoizedAngle.js +19 -0
- package/dist/esm/Entities/MemoizedAngle.js.map +1 -0
- package/dist/esm/Entities/MemoizedAngle.test.js +28 -0
- package/dist/esm/Entities/MemoizedAngle.test.js.map +1 -0
- package/dist/esm/Entities/MemoizedBoolean.js +19 -0
- package/dist/esm/Entities/MemoizedBoolean.js.map +1 -0
- package/dist/esm/Entities/MemoizedBoolean.test.js +32 -0
- package/dist/esm/Entities/MemoizedBoolean.test.js.map +1 -0
- package/dist/esm/Entities/MemoizedColor.js +20 -0
- package/dist/esm/Entities/MemoizedColor.js.map +1 -0
- package/dist/esm/Entities/MemoizedColor.test.js +30 -0
- package/dist/esm/Entities/MemoizedColor.test.js.map +1 -0
- package/dist/esm/Entities/MemoizedNumber.js +19 -0
- package/dist/esm/Entities/MemoizedNumber.js.map +1 -0
- package/dist/esm/Entities/MemoizedNumber.test.js +27 -0
- package/dist/esm/Entities/MemoizedNumber.test.js.map +1 -0
- package/dist/esm/Entities/MemoizedQuaternion.js +20 -0
- package/dist/esm/Entities/MemoizedQuaternion.js.map +1 -0
- package/dist/esm/Entities/MemoizedQuaternion.test.js +30 -0
- package/dist/esm/Entities/MemoizedQuaternion.test.js.map +1 -0
- package/dist/esm/Entities/MemoizedString.js +19 -0
- package/dist/esm/Entities/MemoizedString.js.map +1 -0
- package/dist/esm/Entities/MemoizedString.test.js +27 -0
- package/dist/esm/Entities/MemoizedString.test.js.map +1 -0
- package/dist/esm/Entities/MemoizedVector2.js +20 -0
- package/dist/esm/Entities/MemoizedVector2.js.map +1 -0
- package/dist/esm/Entities/MemoizedVector2.test.js +30 -0
- package/dist/esm/Entities/MemoizedVector2.test.js.map +1 -0
- package/dist/esm/Entities/MemoizedVector3.js +20 -0
- package/dist/esm/Entities/MemoizedVector3.js.map +1 -0
- package/dist/esm/Entities/MemoizedVector3.test.js +30 -0
- package/dist/esm/Entities/MemoizedVector3.test.js.map +1 -0
- package/dist/esm/Entities/ObservableEntity.js +16 -0
- package/dist/esm/Entities/ObservableEntity.js.map +1 -0
- package/dist/esm/Entities/ObservableEntity.test.js +23 -0
- package/dist/esm/Entities/ObservableEntity.test.js.map +1 -0
- package/dist/esm/Entities/ObserverList.js +23 -0
- package/dist/esm/Entities/ObserverList.js.map +1 -0
- package/dist/esm/Entities/ObserverList.test.js +42 -0
- package/dist/esm/Entities/ObserverList.test.js.map +1 -0
- package/dist/esm/Entities/RangedNumber.js +32 -0
- package/dist/esm/Entities/RangedNumber.js.map +1 -0
- package/dist/esm/Entities/RangedNumber.test.js +94 -0
- package/dist/esm/Entities/RangedNumber.test.js.map +1 -0
- package/{src/Entities/index.ts → dist/esm/Entities/index.js} +12 -11
- package/dist/esm/Entities/index.js.map +1 -0
- package/dist/esm/Types/AppBoundary.js +2 -0
- package/dist/esm/Types/AppBoundary.js.map +1 -0
- package/dist/esm/Types/EaseFn.js +2 -0
- package/dist/esm/Types/EaseFn.js.map +1 -0
- package/dist/esm/Types/PmAdapter.js +2 -0
- package/dist/esm/Types/PmAdapter.js.map +1 -0
- package/dist/esm/Types/SingletonPmAdapter.js +2 -0
- package/dist/esm/Types/SingletonPmAdapter.js.map +1 -0
- package/{src/Types/index.ts → dist/esm/Types/index.js} +5 -4
- package/dist/esm/Types/index.js.map +1 -0
- package/dist/esm/Utilities/LengthConverters.js +15 -0
- package/dist/esm/Utilities/LengthConverters.js.map +1 -0
- package/dist/esm/Utilities/LengthConverters.test.js +22 -0
- package/dist/esm/Utilities/LengthConverters.test.js.map +1 -0
- package/dist/esm/Utilities/LerpNumber.js +81 -0
- package/dist/esm/Utilities/LerpNumber.js.map +1 -0
- package/dist/esm/Utilities/LerpNumber.test.js +88 -0
- package/dist/esm/Utilities/LerpNumber.test.js.map +1 -0
- package/dist/esm/Utilities/degreesToRadians.js +4 -0
- package/dist/esm/Utilities/degreesToRadians.js.map +1 -0
- package/dist/esm/Utilities/degreesToRadians.test.js +7 -0
- package/dist/esm/Utilities/degreesToRadians.test.js.map +1 -0
- package/dist/esm/Utilities/easeFunctions.js +183 -0
- package/dist/esm/Utilities/easeFunctions.js.map +1 -0
- package/dist/esm/Utilities/easeFunctions.test.js +207 -0
- package/dist/esm/Utilities/easeFunctions.test.js.map +1 -0
- package/dist/esm/Utilities/generateUniqueID.js +5 -0
- package/dist/esm/Utilities/generateUniqueID.js.map +1 -0
- package/{src/Utilities/index.ts → dist/esm/Utilities/index.js} +6 -6
- package/dist/esm/Utilities/index.js.map +1 -0
- package/dist/esm/Utilities/interpolateNumber.js +15 -0
- package/dist/esm/Utilities/interpolateNumber.js.map +1 -0
- package/dist/esm/Utilities/interpolateNumber.test.js +24 -0
- package/dist/esm/Utilities/interpolateNumber.test.js.map +1 -0
- package/dist/esm/ValueObjects/Angle.js +43 -0
- package/dist/esm/ValueObjects/Angle.js.map +1 -0
- package/dist/esm/ValueObjects/Angle.test.js +26 -0
- package/dist/esm/ValueObjects/Angle.test.js.map +1 -0
- package/dist/esm/ValueObjects/Color.js +855 -0
- package/dist/esm/ValueObjects/Color.js.map +1 -0
- package/dist/esm/ValueObjects/Color.test.js +145 -0
- package/dist/esm/ValueObjects/Color.test.js.map +1 -0
- package/dist/esm/ValueObjects/LineSegment2D.js +68 -0
- package/dist/esm/ValueObjects/LineSegment2D.js.map +1 -0
- package/dist/esm/ValueObjects/LineSegment2D.test.js +100 -0
- package/dist/esm/ValueObjects/LineSegment2D.test.js.map +1 -0
- package/dist/esm/ValueObjects/Matrix.js +462 -0
- package/dist/esm/ValueObjects/Matrix.js.map +1 -0
- package/dist/esm/ValueObjects/Matrix.test.js +383 -0
- package/dist/esm/ValueObjects/Matrix.test.js.map +1 -0
- package/dist/esm/ValueObjects/ParametricLine.js +73 -0
- package/dist/esm/ValueObjects/ParametricLine.js.map +1 -0
- package/dist/esm/ValueObjects/ParametricLine.test.js +124 -0
- package/dist/esm/ValueObjects/ParametricLine.test.js.map +1 -0
- package/dist/esm/ValueObjects/ParametricPlane.js +61 -0
- package/dist/esm/ValueObjects/ParametricPlane.js.map +1 -0
- package/dist/esm/ValueObjects/ParametricPlane.test.js +99 -0
- package/dist/esm/ValueObjects/ParametricPlane.test.js.map +1 -0
- package/dist/esm/ValueObjects/Quaternion.js +286 -0
- package/dist/esm/ValueObjects/Quaternion.js.map +1 -0
- package/dist/esm/ValueObjects/Quaternion.test.js +238 -0
- package/dist/esm/ValueObjects/Quaternion.test.js.map +1 -0
- package/dist/esm/ValueObjects/Rectangle.js +20 -0
- package/dist/esm/ValueObjects/Rectangle.js.map +1 -0
- package/dist/esm/ValueObjects/Rectangle.test.js +30 -0
- package/dist/esm/ValueObjects/Rectangle.test.js.map +1 -0
- package/dist/esm/ValueObjects/Vector2.js +180 -0
- package/dist/esm/ValueObjects/Vector2.js.map +1 -0
- package/dist/esm/ValueObjects/Vector2.test.js +134 -0
- package/dist/esm/ValueObjects/Vector2.test.js.map +1 -0
- package/dist/esm/ValueObjects/Vector3.js +227 -0
- package/dist/esm/ValueObjects/Vector3.js.map +1 -0
- package/dist/esm/ValueObjects/Vector3.test.js +186 -0
- package/dist/esm/ValueObjects/Vector3.test.js.map +1 -0
- package/{src/ValueObjects/index.ts → dist/esm/ValueObjects/index.js} +11 -14
- package/dist/esm/ValueObjects/index.js.map +1 -0
- package/{src/index.ts → dist/esm/index.js} +6 -5
- package/dist/esm/index.js.map +1 -0
- package/dist/types/AppObject/AppObject.d.ts +15 -0
- package/dist/types/AppObject/AppObject.d.ts.map +1 -0
- package/dist/types/AppObject/AppObject.test.d.ts +7 -0
- package/dist/types/AppObject/AppObject.test.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectComponent.d.ts +26 -0
- package/dist/types/AppObject/AppObjectComponent.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectComponent.test.d.ts +2 -0
- package/dist/types/AppObject/AppObjectComponent.test.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectController.d.ts +5 -0
- package/dist/types/AppObject/AppObjectController.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectEntity.d.ts +16 -0
- package/dist/types/AppObject/AppObjectEntity.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectEntity.test.d.ts +2 -0
- package/dist/types/AppObject/AppObjectEntity.test.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectEntityRepo.d.ts +16 -0
- package/dist/types/AppObject/AppObjectEntityRepo.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectEntityRepo.test.d.ts +2 -0
- package/dist/types/AppObject/AppObjectEntityRepo.test.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectPM.d.ts +13 -0
- package/dist/types/AppObject/AppObjectPM.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectPM.test.d.ts +2 -0
- package/dist/types/AppObject/AppObjectPM.test.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectRepo.d.ts +26 -0
- package/dist/types/AppObject/AppObjectRepo.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectRepo.test.d.ts +2 -0
- package/dist/types/AppObject/AppObjectRepo.test.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectUC.d.ts +5 -0
- package/dist/types/AppObject/AppObjectUC.d.ts.map +1 -0
- package/dist/types/AppObject/AppObjectView.d.ts +5 -0
- package/dist/types/AppObject/AppObjectView.d.ts.map +1 -0
- package/dist/types/AppObject/getSingletonComponent.d.ts +4 -0
- package/dist/types/AppObject/getSingletonComponent.d.ts.map +1 -0
- package/dist/types/AppObject/getSingletonComponent.test.d.ts +2 -0
- package/dist/types/AppObject/getSingletonComponent.test.d.ts.map +1 -0
- package/dist/types/AppObject/index.d.ts +11 -0
- package/dist/types/AppObject/index.d.ts.map +1 -0
- package/dist/types/AppObject/printAppObjectDetails.d.ts +3 -0
- package/dist/types/AppObject/printAppObjectDetails.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedAngle.d.ts +10 -0
- package/dist/types/Entities/MemoizedAngle.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedAngle.test.d.ts +2 -0
- package/dist/types/Entities/MemoizedAngle.test.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedBoolean.d.ts +9 -0
- package/dist/types/Entities/MemoizedBoolean.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedBoolean.test.d.ts +2 -0
- package/dist/types/Entities/MemoizedBoolean.test.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedColor.d.ts +10 -0
- package/dist/types/Entities/MemoizedColor.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedColor.test.d.ts +2 -0
- package/dist/types/Entities/MemoizedColor.test.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedNumber.d.ts +9 -0
- package/dist/types/Entities/MemoizedNumber.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedNumber.test.d.ts +2 -0
- package/dist/types/Entities/MemoizedNumber.test.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedQuaternion.d.ts +10 -0
- package/dist/types/Entities/MemoizedQuaternion.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedQuaternion.test.d.ts +2 -0
- package/dist/types/Entities/MemoizedQuaternion.test.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedString.d.ts +9 -0
- package/dist/types/Entities/MemoizedString.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedString.test.d.ts +2 -0
- package/dist/types/Entities/MemoizedString.test.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedVector2.d.ts +10 -0
- package/dist/types/Entities/MemoizedVector2.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedVector2.test.d.ts +2 -0
- package/dist/types/Entities/MemoizedVector2.test.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedVector3.d.ts +10 -0
- package/dist/types/Entities/MemoizedVector3.d.ts.map +1 -0
- package/dist/types/Entities/MemoizedVector3.test.d.ts +2 -0
- package/dist/types/Entities/MemoizedVector3.test.d.ts.map +1 -0
- package/dist/types/Entities/ObservableEntity.d.ts +8 -0
- package/dist/types/Entities/ObservableEntity.d.ts.map +1 -0
- package/dist/types/Entities/ObservableEntity.test.d.ts +2 -0
- package/dist/types/Entities/ObservableEntity.test.d.ts.map +1 -0
- package/dist/types/Entities/ObserverList.d.ts +8 -0
- package/dist/types/Entities/ObserverList.d.ts.map +1 -0
- package/dist/types/Entities/ObserverList.test.d.ts +2 -0
- package/dist/types/Entities/ObserverList.test.d.ts.map +1 -0
- package/dist/types/Entities/RangedNumber.d.ts +17 -0
- package/dist/types/Entities/RangedNumber.d.ts.map +1 -0
- package/dist/types/Entities/RangedNumber.test.d.ts +2 -0
- package/dist/types/Entities/RangedNumber.test.d.ts.map +1 -0
- package/dist/types/Entities/index.d.ts +12 -0
- package/dist/types/Entities/index.d.ts.map +1 -0
- package/dist/types/Types/AppBoundary.d.ts +11 -0
- package/dist/types/Types/AppBoundary.d.ts.map +1 -0
- package/dist/types/Types/EaseFn.d.ts +2 -0
- package/dist/types/Types/EaseFn.d.ts.map +1 -0
- package/dist/types/Types/PmAdapter.d.ts +7 -0
- package/dist/types/Types/PmAdapter.d.ts.map +1 -0
- package/dist/types/Types/SingletonPmAdapter.d.ts +7 -0
- package/dist/types/Types/SingletonPmAdapter.d.ts.map +1 -0
- package/dist/types/Types/index.d.ts +5 -0
- package/dist/types/Types/index.d.ts.map +1 -0
- package/dist/types/Utilities/LengthConverters.d.ts +5 -0
- package/dist/types/Utilities/LengthConverters.d.ts.map +1 -0
- package/dist/types/Utilities/LengthConverters.test.d.ts +2 -0
- package/dist/types/Utilities/LengthConverters.test.d.ts.map +1 -0
- package/dist/types/Utilities/LerpNumber.d.ts +57 -0
- package/dist/types/Utilities/LerpNumber.d.ts.map +1 -0
- package/dist/types/Utilities/LerpNumber.test.d.ts +2 -0
- package/dist/types/Utilities/LerpNumber.test.d.ts.map +1 -0
- package/dist/types/Utilities/degreesToRadians.d.ts +2 -0
- package/dist/types/Utilities/degreesToRadians.d.ts.map +1 -0
- package/dist/types/Utilities/degreesToRadians.test.d.ts +2 -0
- package/dist/types/Utilities/degreesToRadians.test.d.ts.map +1 -0
- package/dist/types/Utilities/easeFunctions.d.ts +24 -0
- package/dist/types/Utilities/easeFunctions.d.ts.map +1 -0
- package/dist/types/Utilities/easeFunctions.test.d.ts +2 -0
- package/dist/types/Utilities/easeFunctions.test.d.ts.map +1 -0
- package/dist/types/Utilities/generateUniqueID.d.ts +2 -0
- package/dist/types/Utilities/generateUniqueID.d.ts.map +1 -0
- package/dist/types/Utilities/index.d.ts +6 -0
- package/dist/types/Utilities/index.d.ts.map +1 -0
- package/dist/types/Utilities/interpolateNumber.d.ts +2 -0
- package/dist/types/Utilities/interpolateNumber.d.ts.map +1 -0
- package/dist/types/Utilities/interpolateNumber.test.d.ts +2 -0
- package/dist/types/Utilities/interpolateNumber.test.d.ts.map +1 -0
- package/dist/types/ValueObjects/Angle.d.ts +27 -0
- package/dist/types/ValueObjects/Angle.d.ts.map +1 -0
- package/dist/types/ValueObjects/Angle.test.d.ts +2 -0
- package/dist/types/ValueObjects/Angle.test.d.ts.map +1 -0
- package/dist/types/ValueObjects/Color.d.ts +83 -0
- package/dist/types/ValueObjects/Color.d.ts.map +1 -0
- package/dist/types/ValueObjects/Color.test.d.ts +2 -0
- package/dist/types/ValueObjects/Color.test.d.ts.map +1 -0
- package/dist/types/ValueObjects/LineSegment2D.d.ts +12 -0
- package/dist/types/ValueObjects/LineSegment2D.d.ts.map +1 -0
- package/dist/types/ValueObjects/LineSegment2D.test.d.ts +2 -0
- package/dist/types/ValueObjects/LineSegment2D.test.d.ts.map +1 -0
- package/dist/types/ValueObjects/Matrix.d.ts +124 -0
- package/dist/types/ValueObjects/Matrix.d.ts.map +1 -0
- package/dist/types/ValueObjects/Matrix.test.d.ts +2 -0
- package/dist/types/ValueObjects/Matrix.test.d.ts.map +1 -0
- package/dist/types/ValueObjects/ParametricLine.d.ts +31 -0
- package/dist/types/ValueObjects/ParametricLine.d.ts.map +1 -0
- package/dist/types/ValueObjects/ParametricLine.test.d.ts +2 -0
- package/dist/types/ValueObjects/ParametricLine.test.d.ts.map +1 -0
- package/dist/types/ValueObjects/ParametricPlane.d.ts +21 -0
- package/dist/types/ValueObjects/ParametricPlane.d.ts.map +1 -0
- package/dist/types/ValueObjects/ParametricPlane.test.d.ts +2 -0
- package/dist/types/ValueObjects/ParametricPlane.test.d.ts.map +1 -0
- package/dist/types/ValueObjects/Quaternion.d.ts +113 -0
- package/dist/types/ValueObjects/Quaternion.d.ts.map +1 -0
- package/dist/types/ValueObjects/Quaternion.test.d.ts +2 -0
- package/dist/types/ValueObjects/Quaternion.test.d.ts.map +1 -0
- package/dist/types/ValueObjects/Rectangle.d.ts +16 -0
- package/dist/types/ValueObjects/Rectangle.d.ts.map +1 -0
- package/dist/types/ValueObjects/Rectangle.test.d.ts +2 -0
- package/dist/types/ValueObjects/Rectangle.test.d.ts.map +1 -0
- package/dist/types/ValueObjects/Vector2.d.ts +121 -0
- package/dist/types/ValueObjects/Vector2.d.ts.map +1 -0
- package/dist/types/ValueObjects/Vector2.test.d.ts +2 -0
- package/dist/types/ValueObjects/Vector2.test.d.ts.map +1 -0
- package/dist/types/ValueObjects/Vector3.d.ts +150 -0
- package/dist/types/ValueObjects/Vector3.d.ts.map +1 -0
- package/dist/types/ValueObjects/Vector3.test.d.ts +2 -0
- package/dist/types/ValueObjects/Vector3.test.d.ts.map +1 -0
- package/dist/types/ValueObjects/index.d.ts +11 -0
- package/dist/types/ValueObjects/index.d.ts.map +1 -0
- package/dist/types/index.d.ts +6 -0
- package/dist/types/index.d.ts.map +1 -0
- package/package.json +5 -2
- package/babel.config.js +0 -12
- package/jestconfig.json +0 -10
- package/src/AppObject/AppObject.test.ts +0 -158
- package/src/AppObject/AppObject.ts +0 -83
- package/src/AppObject/AppObjectComponent.test.ts +0 -219
- package/src/AppObject/AppObjectComponent.ts +0 -100
- package/src/AppObject/AppObjectController.ts +0 -8
- package/src/AppObject/AppObjectEntity.test.ts +0 -151
- package/src/AppObject/AppObjectEntity.ts +0 -45
- package/src/AppObject/AppObjectEntityRepo.test.ts +0 -211
- package/src/AppObject/AppObjectEntityRepo.ts +0 -61
- package/src/AppObject/AppObjectPM.test.ts +0 -152
- package/src/AppObject/AppObjectPM.ts +0 -43
- package/src/AppObject/AppObjectRepo.test.ts +0 -317
- package/src/AppObject/AppObjectRepo.ts +0 -203
- package/src/AppObject/AppObjectUC.ts +0 -5
- package/src/AppObject/AppObjectView.ts +0 -5
- package/src/AppObject/getSingletonComponent.test.ts +0 -17
- package/src/AppObject/getSingletonComponent.ts +0 -9
- package/src/AppObject/index.ts +0 -10
- package/src/AppObject/printAppObjectDetails.ts +0 -17
- package/src/Entities/MemoizedAngle.test.ts +0 -38
- package/src/Entities/MemoizedAngle.ts +0 -25
- package/src/Entities/MemoizedBoolean.test.ts +0 -45
- package/src/Entities/MemoizedBoolean.ts +0 -23
- package/src/Entities/MemoizedColor.test.ts +0 -39
- package/src/Entities/MemoizedColor.ts +0 -27
- package/src/Entities/MemoizedNumber.test.ts +0 -37
- package/src/Entities/MemoizedNumber.ts +0 -23
- package/src/Entities/MemoizedQuaternion.test.ts +0 -39
- package/src/Entities/MemoizedQuaternion.ts +0 -27
- package/src/Entities/MemoizedString.test.ts +0 -37
- package/src/Entities/MemoizedString.ts +0 -23
- package/src/Entities/MemoizedVector2.test.ts +0 -39
- package/src/Entities/MemoizedVector2.ts +0 -27
- package/src/Entities/MemoizedVector3.test.ts +0 -39
- package/src/Entities/MemoizedVector3.ts +0 -27
- package/src/Entities/ObservableEntity.test.ts +0 -28
- package/src/Entities/ObservableEntity.ts +0 -17
- package/src/Entities/ObserverList.test.ts +0 -61
- package/src/Entities/ObserverList.ts +0 -24
- package/src/Entities/RangedNumber.test.ts +0 -118
- package/src/Entities/RangedNumber.ts +0 -45
- package/src/Types/AppBoundary.ts +0 -13
- package/src/Types/EaseFn.ts +0 -1
- package/src/Types/PmAdapter.ts +0 -15
- package/src/Types/SingletonPmAdapter.ts +0 -7
- package/src/Utilities/LengthConverters.test.ts +0 -30
- package/src/Utilities/LengthConverters.ts +0 -18
- package/src/Utilities/LerpNumber.test.ts +0 -109
- package/src/Utilities/LerpNumber.ts +0 -109
- package/src/Utilities/degreesToRadians.test.ts +0 -8
- package/src/Utilities/degreesToRadians.ts +0 -3
- package/src/Utilities/easeFunctions.test.ts +0 -251
- package/src/Utilities/easeFunctions.ts +0 -180
- package/src/Utilities/generateUniqueID.ts +0 -5
- package/src/Utilities/interpolateNumber.test.ts +0 -28
- package/src/Utilities/interpolateNumber.ts +0 -21
- package/src/ValueObjects/Angle.test.ts +0 -30
- package/src/ValueObjects/Angle.ts +0 -47
- package/src/ValueObjects/Color.test.ts +0 -181
- package/src/ValueObjects/Color.ts +0 -891
- package/src/ValueObjects/LineSegment2D.test.ts +0 -144
- package/src/ValueObjects/LineSegment2D.ts +0 -93
- package/src/ValueObjects/Matrix.test.ts +0 -498
- package/src/ValueObjects/Matrix.ts +0 -567
- package/src/ValueObjects/ParametricLine.test.ts +0 -155
- package/src/ValueObjects/ParametricLine.ts +0 -114
- package/src/ValueObjects/ParametricPlane.test.ts +0 -122
- package/src/ValueObjects/ParametricPlane.ts +0 -82
- package/src/ValueObjects/Quaternion.test.ts +0 -356
- package/src/ValueObjects/Quaternion.ts +0 -353
- package/src/ValueObjects/Rectangle.test.ts +0 -32
- package/src/ValueObjects/Rectangle.ts +0 -33
- package/src/ValueObjects/Vector2.test.ts +0 -167
- package/src/ValueObjects/Vector2.ts +0 -209
- package/src/ValueObjects/Vector3.test.ts +0 -228
- package/src/ValueObjects/Vector3.ts +0 -269
- package/tsconfig.build.json +0 -7
- package/tsconfig.cjs.json +0 -9
- package/tsconfig.esm.json +0 -12
- package/tsconfig.json +0 -19
- package/tslint.json +0 -11
|
@@ -0,0 +1,383 @@
|
|
|
1
|
+
import { Angle } from "./Angle";
|
|
2
|
+
import { Matrix } from "./Matrix";
|
|
3
|
+
import { Quaternion } from "./Quaternion";
|
|
4
|
+
import { Vector3 } from "./Vector3";
|
|
5
|
+
describe("Matrix Value Object", () => {
|
|
6
|
+
it("Forms an identity matrix", () => {
|
|
7
|
+
const identity = Matrix.Identity();
|
|
8
|
+
const expected = new Matrix(identityArray);
|
|
9
|
+
expect(identity).toEqual(expected);
|
|
10
|
+
});
|
|
11
|
+
it("Forms a zero matrix", () => {
|
|
12
|
+
const identity = Matrix.Zero();
|
|
13
|
+
const expected = new Matrix(zeroArray);
|
|
14
|
+
expect(identity).toEqual(expected);
|
|
15
|
+
});
|
|
16
|
+
it("Checks to see if two matricies are equal", () => {
|
|
17
|
+
const m1 = new Matrix(sequentialArray);
|
|
18
|
+
const m2 = new Matrix(sequentialArray);
|
|
19
|
+
const m3 = new Matrix(zeroArray);
|
|
20
|
+
expect(Matrix.Equal(m1, m2)).toEqual(true);
|
|
21
|
+
expect(Matrix.Equal(m1, m3)).toEqual(false);
|
|
22
|
+
});
|
|
23
|
+
it("Checks for eqaulity during tests", () => {
|
|
24
|
+
const m1 = new Matrix(sequentialArray);
|
|
25
|
+
const m2 = new Matrix(sequentialArray);
|
|
26
|
+
expect(m1).toEqual(m2);
|
|
27
|
+
});
|
|
28
|
+
it("Returns the translation", () => {
|
|
29
|
+
const m1 = new Matrix(sequentialArray);
|
|
30
|
+
expect(m1.translation).toEqual(new Vector3(13, 14, 15));
|
|
31
|
+
});
|
|
32
|
+
it("Multipiles two matricies", () => {
|
|
33
|
+
const m1 = new Matrix(sequentialArray);
|
|
34
|
+
const m2 = new Matrix([
|
|
35
|
+
16,
|
|
36
|
+
15,
|
|
37
|
+
14,
|
|
38
|
+
13,
|
|
39
|
+
12,
|
|
40
|
+
11,
|
|
41
|
+
10,
|
|
42
|
+
9,
|
|
43
|
+
8,
|
|
44
|
+
7,
|
|
45
|
+
6,
|
|
46
|
+
5,
|
|
47
|
+
4,
|
|
48
|
+
3,
|
|
49
|
+
2,
|
|
50
|
+
1,
|
|
51
|
+
]);
|
|
52
|
+
const expected = new Matrix([
|
|
53
|
+
386,
|
|
54
|
+
444,
|
|
55
|
+
502,
|
|
56
|
+
560,
|
|
57
|
+
274,
|
|
58
|
+
316,
|
|
59
|
+
358,
|
|
60
|
+
400,
|
|
61
|
+
162,
|
|
62
|
+
188,
|
|
63
|
+
214,
|
|
64
|
+
240,
|
|
65
|
+
50,
|
|
66
|
+
60,
|
|
67
|
+
70,
|
|
68
|
+
80,
|
|
69
|
+
]);
|
|
70
|
+
const result = Matrix.Multiply(m1, m2);
|
|
71
|
+
expect(result.m).toEqual(expected.m);
|
|
72
|
+
});
|
|
73
|
+
it("Composes an Identity matrix", () => {
|
|
74
|
+
const pos = Vector3.Zero();
|
|
75
|
+
const scale = Vector3.One();
|
|
76
|
+
const rot = Quaternion.Identity();
|
|
77
|
+
const mat = Matrix.Compose(scale, rot, pos);
|
|
78
|
+
expect(mat).toEqual(Matrix.Identity());
|
|
79
|
+
});
|
|
80
|
+
it("Composes a matrix with a position", () => {
|
|
81
|
+
const pos = new Vector3(11, 22, 33);
|
|
82
|
+
const scale = Vector3.One();
|
|
83
|
+
const rot = Quaternion.Identity();
|
|
84
|
+
const composed = Matrix.Compose(scale, rot, pos);
|
|
85
|
+
const expected = new Matrix([
|
|
86
|
+
1,
|
|
87
|
+
0,
|
|
88
|
+
0,
|
|
89
|
+
0,
|
|
90
|
+
0,
|
|
91
|
+
1,
|
|
92
|
+
0,
|
|
93
|
+
0,
|
|
94
|
+
0,
|
|
95
|
+
0,
|
|
96
|
+
1,
|
|
97
|
+
0,
|
|
98
|
+
11,
|
|
99
|
+
22,
|
|
100
|
+
33,
|
|
101
|
+
1,
|
|
102
|
+
]);
|
|
103
|
+
expect(composed).toEqual(expected);
|
|
104
|
+
});
|
|
105
|
+
it("Composes a matrix with scale", () => {
|
|
106
|
+
const pos = Vector3.Zero();
|
|
107
|
+
const scale = new Vector3(6, 7, 8);
|
|
108
|
+
const rot = Quaternion.Identity();
|
|
109
|
+
const composed = Matrix.Compose(scale, rot, pos);
|
|
110
|
+
const expected = new Matrix([
|
|
111
|
+
6,
|
|
112
|
+
0,
|
|
113
|
+
0,
|
|
114
|
+
0,
|
|
115
|
+
0,
|
|
116
|
+
7,
|
|
117
|
+
0,
|
|
118
|
+
0,
|
|
119
|
+
0,
|
|
120
|
+
0,
|
|
121
|
+
8,
|
|
122
|
+
0,
|
|
123
|
+
0,
|
|
124
|
+
0,
|
|
125
|
+
0,
|
|
126
|
+
1,
|
|
127
|
+
]);
|
|
128
|
+
expect(composed).toEqual(expected);
|
|
129
|
+
});
|
|
130
|
+
it("Composes a matrix with rotation", () => {
|
|
131
|
+
// Number are from Babylon
|
|
132
|
+
const pos = Vector3.Zero();
|
|
133
|
+
const scale = Vector3.One();
|
|
134
|
+
const rot = Quaternion.FromEuler(Angle.FromRadians(1), Angle.FromRadians(2), Angle.FromRadians(3));
|
|
135
|
+
const composed = Matrix.Compose(scale, rot, pos);
|
|
136
|
+
expect(composed.m[0]).toBeCloseTo(0.5199598670005798);
|
|
137
|
+
expect(composed.m[1]).toBeCloseTo(0.07624746859073639);
|
|
138
|
+
expect(composed.m[2]).toBeCloseTo(0.8507808446884155);
|
|
139
|
+
expect(composed.m[4]).toBeCloseTo(-0.6987635493278503);
|
|
140
|
+
expect(composed.m[5]).toBeCloseTo(-0.5348952412605286);
|
|
141
|
+
expect(composed.m[6]).toBeCloseTo(0.47499117255210876);
|
|
142
|
+
expect(composed.m[8]).toBeCloseTo(0.4912954866886139);
|
|
143
|
+
expect(composed.m[9]).toBeCloseTo(-0.8414709568023682);
|
|
144
|
+
expect(composed.m[10]).toBeCloseTo(-0.22484509646892548);
|
|
145
|
+
});
|
|
146
|
+
it("Calculates a determinant", () => {
|
|
147
|
+
const sequential = new Matrix(sequentialArray);
|
|
148
|
+
expect(sequential.determinate).toEqual(0);
|
|
149
|
+
const identity = Matrix.Identity();
|
|
150
|
+
expect(identity.determinate).toEqual(1);
|
|
151
|
+
const pos = new Vector3(23, 26, 29);
|
|
152
|
+
const scale = new Vector3(6, 7, 8);
|
|
153
|
+
const rot = Quaternion.FromEuler(Angle.FromRadians(1), Angle.FromRadians(2), Angle.FromRadians(3));
|
|
154
|
+
const composed = Matrix.Compose(scale, rot, pos);
|
|
155
|
+
expect(composed.determinate).toBeCloseTo(335.99999908851385); // Number is from babylon
|
|
156
|
+
});
|
|
157
|
+
it("Returns the translation", () => {
|
|
158
|
+
const pos = new Vector3(23, 26, 29);
|
|
159
|
+
const scale = new Vector3(6, 7, 8);
|
|
160
|
+
const rot = Quaternion.FromEuler(Angle.FromRadians(1), Angle.FromRadians(2), Angle.FromRadians(3));
|
|
161
|
+
const composed = Matrix.Compose(scale, rot, pos);
|
|
162
|
+
expect(composed.translation).toEqual(pos);
|
|
163
|
+
});
|
|
164
|
+
it("Returns the scale", () => {
|
|
165
|
+
const pos = new Vector3(23, 26, 29);
|
|
166
|
+
const scale = new Vector3(6, 7, 8);
|
|
167
|
+
const rot = Quaternion.FromEuler(Angle.FromRadians(1), Angle.FromRadians(2), Angle.FromRadians(3));
|
|
168
|
+
const composed = Matrix.Compose(scale, rot, pos);
|
|
169
|
+
expect(composed.scale.x).toBeCloseTo(scale.x);
|
|
170
|
+
expect(composed.scale.y).toBeCloseTo(scale.y);
|
|
171
|
+
expect(composed.scale.z).toBeCloseTo(scale.z);
|
|
172
|
+
});
|
|
173
|
+
it("Returns the negative scale", () => {
|
|
174
|
+
const pos = new Vector3(23, 26, 29);
|
|
175
|
+
const scale = new Vector3(6, -7, 8);
|
|
176
|
+
const rot = Quaternion.FromEuler(Angle.FromRadians(1), Angle.FromRadians(2), Angle.FromRadians(3));
|
|
177
|
+
const composed = Matrix.Compose(scale, rot, pos);
|
|
178
|
+
expect(composed.scale.x).toBeCloseTo(scale.x);
|
|
179
|
+
expect(composed.scale.y).toBeCloseTo(scale.y);
|
|
180
|
+
expect(composed.scale.z).toBeCloseTo(scale.z);
|
|
181
|
+
});
|
|
182
|
+
it("Returns a rotation matrix", () => {
|
|
183
|
+
const pos = new Vector3(23, 26, 29);
|
|
184
|
+
const scale = new Vector3(6, -7, 8);
|
|
185
|
+
const rot = Quaternion.FromEuler(Angle.FromRadians(1), Angle.FromRadians(2), Angle.FromRadians(3));
|
|
186
|
+
const composed = Matrix.Compose(scale, rot, pos);
|
|
187
|
+
const expected = Matrix.Compose(Vector3.One(), rot, Vector3.Zero());
|
|
188
|
+
expect(Matrix.Close(composed.rotationMatrix, expected)).toEqual(true);
|
|
189
|
+
});
|
|
190
|
+
it("Returns the rotation", () => {
|
|
191
|
+
const pos = new Vector3(23, 26, 29);
|
|
192
|
+
const scale = new Vector3(6, 7, 8);
|
|
193
|
+
const rot = Quaternion.FromEuler(Angle.FromRadians(1), Angle.FromRadians(2), Angle.FromRadians(3));
|
|
194
|
+
const composed = Matrix.Compose(scale, rot, pos);
|
|
195
|
+
expect(Quaternion.Close(composed.rotation, rot)).toEqual(true);
|
|
196
|
+
});
|
|
197
|
+
it("Checks if matricies are close", () => {
|
|
198
|
+
const m1 = new Matrix(sequentialArray);
|
|
199
|
+
const biggerValues = [...sequentialArray];
|
|
200
|
+
biggerValues.forEach((val, i) => {
|
|
201
|
+
biggerValues[i] = val + 0.01; // Just a little bump
|
|
202
|
+
});
|
|
203
|
+
const bigger = new Matrix(biggerValues);
|
|
204
|
+
const smallerValues = [...sequentialArray];
|
|
205
|
+
smallerValues.forEach((val, i) => {
|
|
206
|
+
smallerValues[i] = val - 0.01; // Just a little bump
|
|
207
|
+
});
|
|
208
|
+
const smaller = new Matrix(smallerValues);
|
|
209
|
+
expect(Matrix.Close(m1, bigger, 0.0101)).toEqual(true);
|
|
210
|
+
expect(Matrix.Close(m1, bigger, 0.0099)).toEqual(false);
|
|
211
|
+
expect(Matrix.Close(m1, smaller, 0.0101)).toEqual(true);
|
|
212
|
+
expect(Matrix.Close(m1, smaller, 0.0099)).toEqual(false);
|
|
213
|
+
});
|
|
214
|
+
it("Results in an Identity if we invert the identity", () => {
|
|
215
|
+
const identity = Matrix.Identity();
|
|
216
|
+
const inverted = Matrix.Invert(identity);
|
|
217
|
+
expect(Matrix.Close(inverted, identity)).toEqual(true);
|
|
218
|
+
});
|
|
219
|
+
it("Inverts a matrix", () => {
|
|
220
|
+
const pos = new Vector3(23, 26, 29);
|
|
221
|
+
const scale = new Vector3(6, 7, 8);
|
|
222
|
+
const rot = Quaternion.FromEuler(Angle.FromRadians(1), Angle.FromRadians(2), Angle.FromRadians(3));
|
|
223
|
+
const mat = Matrix.Compose(scale, rot, pos);
|
|
224
|
+
const inverted = Matrix.Invert(mat);
|
|
225
|
+
// Numbers are from babylon
|
|
226
|
+
const expected = new Matrix([
|
|
227
|
+
0.08665996789932251,
|
|
228
|
+
-0.09982336312532425,
|
|
229
|
+
0.061411935836076736,
|
|
230
|
+
-0,
|
|
231
|
+
0.0127079077064991,
|
|
232
|
+
-0.0764136016368866,
|
|
233
|
+
-0.10518387705087662,
|
|
234
|
+
0,
|
|
235
|
+
0.14179681241512299,
|
|
236
|
+
0.06785587966442108,
|
|
237
|
+
-0.028105635195970535,
|
|
238
|
+
-0,
|
|
239
|
+
-6.435692310333252,
|
|
240
|
+
2.314870595932007,
|
|
241
|
+
2.1373696327209473,
|
|
242
|
+
1,
|
|
243
|
+
]);
|
|
244
|
+
expect(Matrix.Close(inverted, expected)).toEqual(true);
|
|
245
|
+
});
|
|
246
|
+
it("Creates a rotation matrix from an axis ange angle", () => {
|
|
247
|
+
const axis = new Vector3(1, 2, 3);
|
|
248
|
+
const angle = Angle.FromRadians(1.3);
|
|
249
|
+
const rotationMatrix = Matrix.FromRotationAxisAngle(axis, angle);
|
|
250
|
+
// Numbers are from babylon
|
|
251
|
+
const expected = new Matrix([
|
|
252
|
+
0.3198203444480896,
|
|
253
|
+
0.8772082924842834,
|
|
254
|
+
-0.3580789864063263,
|
|
255
|
+
0,
|
|
256
|
+
-0.6679222583770752,
|
|
257
|
+
0.476784884929657,
|
|
258
|
+
0.5714508295059204,
|
|
259
|
+
0,
|
|
260
|
+
0.6720080375671387,
|
|
261
|
+
0.05640731751918793,
|
|
262
|
+
0.7383924126625061,
|
|
263
|
+
0,
|
|
264
|
+
0,
|
|
265
|
+
0,
|
|
266
|
+
0,
|
|
267
|
+
1,
|
|
268
|
+
]);
|
|
269
|
+
expect(Matrix.Close(rotationMatrix, expected)).toEqual(true);
|
|
270
|
+
});
|
|
271
|
+
it("Sets the transformation of a matrix", () => {
|
|
272
|
+
const pos = new Vector3(23, 26, 29);
|
|
273
|
+
const scale = new Vector3(6, 7, 8);
|
|
274
|
+
const rot = Quaternion.FromEuler(Angle.FromRadians(1), Angle.FromRadians(2), Angle.FromRadians(3));
|
|
275
|
+
const mat = Matrix.Compose(scale, rot, pos);
|
|
276
|
+
const newTrans = new Vector3(3, 2, 1);
|
|
277
|
+
const newMat = Matrix.SetMatrixTranslation(mat, newTrans);
|
|
278
|
+
expect(Quaternion.Close(newMat.rotation, rot)).toEqual(true);
|
|
279
|
+
expect(Vector3.Close(newMat.translation, newTrans)).toEqual(true);
|
|
280
|
+
expect(Vector3.Close(newMat.scale, scale)).toEqual(true);
|
|
281
|
+
});
|
|
282
|
+
it("Sets the rotation of a matrix", () => {
|
|
283
|
+
const pos = new Vector3(23, 26, 29);
|
|
284
|
+
const scale = new Vector3(6, 7, 8);
|
|
285
|
+
const rot = Quaternion.FromEuler(Angle.FromRadians(1), Angle.FromRadians(2), Angle.FromRadians(3));
|
|
286
|
+
const mat = Matrix.Compose(scale, rot, pos);
|
|
287
|
+
const newRotation = Quaternion.FromEuler(Angle.FromRadians(1.1), Angle.FromRadians(2.2), Angle.FromRadians(3.3));
|
|
288
|
+
const newMat = Matrix.SetMatrixRotation(mat, newRotation);
|
|
289
|
+
expect(Quaternion.Close(newMat.rotation, newRotation)).toEqual(true);
|
|
290
|
+
expect(Vector3.Close(newMat.translation, pos)).toEqual(true);
|
|
291
|
+
expect(Vector3.Close(newMat.scale, scale)).toEqual(true);
|
|
292
|
+
});
|
|
293
|
+
it("Sets the scale of a matrix", () => {
|
|
294
|
+
const pos = new Vector3(23, 26, 29);
|
|
295
|
+
const scale = new Vector3(6, 7, 8);
|
|
296
|
+
const rot = Quaternion.FromEuler(Angle.FromRadians(1), Angle.FromRadians(2), Angle.FromRadians(3));
|
|
297
|
+
const mat = Matrix.Compose(scale, rot, pos);
|
|
298
|
+
const newScale = new Vector3(1, 2, 3);
|
|
299
|
+
const newMat = Matrix.SetMatrixScale(mat, newScale);
|
|
300
|
+
expect(Quaternion.Close(newMat.rotation, rot)).toEqual(true);
|
|
301
|
+
expect(Vector3.Close(newMat.translation, pos)).toEqual(true);
|
|
302
|
+
expect(Vector3.Close(newMat.scale, newScale)).toEqual(true);
|
|
303
|
+
});
|
|
304
|
+
it("Makes a Matrix from a Float 32 Array", () => {
|
|
305
|
+
const float32Array = new Float32Array(16);
|
|
306
|
+
for (let index = 0; index < 16; index++) {
|
|
307
|
+
float32Array[index] = index * 2;
|
|
308
|
+
}
|
|
309
|
+
const matrix = Matrix.FromFloat32Array(float32Array);
|
|
310
|
+
for (let index = 0; index < 16; index++) {
|
|
311
|
+
expect(matrix.m[index]).toEqual(index * 2);
|
|
312
|
+
}
|
|
313
|
+
});
|
|
314
|
+
it("Logs an error and return the identity if the float 32 array does not have 16 itesm", () => {
|
|
315
|
+
const float32Array = new Float32Array(1);
|
|
316
|
+
console.error = jest.fn();
|
|
317
|
+
const matrix = Matrix.FromFloat32Array(float32Array);
|
|
318
|
+
expect(console.error).toBeCalled();
|
|
319
|
+
expect(matrix).toEqual(Matrix.Identity());
|
|
320
|
+
});
|
|
321
|
+
it("Flips the handedness of a transform matrix", () => {
|
|
322
|
+
const matrix = new Matrix(sequentialArray);
|
|
323
|
+
const flipped = Matrix.FlipTransformMatrixHand(matrix);
|
|
324
|
+
for (let index = 0; index < 16; index++) {
|
|
325
|
+
if (index === 2 || index === 6 || index === 8 || index === 9 || index === 14) {
|
|
326
|
+
expect(matrix.m[index]).toEqual(-flipped.m[index]);
|
|
327
|
+
}
|
|
328
|
+
else {
|
|
329
|
+
expect(matrix.m[index]).toEqual(flipped.m[index]);
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
});
|
|
333
|
+
it("Flips the handedness of a projection matrix", () => {
|
|
334
|
+
const matrix = new Matrix(sequentialArray);
|
|
335
|
+
const flipped = Matrix.FlipProjectionMatrixHand(matrix);
|
|
336
|
+
for (let index = 0; index < 16; index++) {
|
|
337
|
+
if (index === 8 || index === 9 || index === 10 || index === 11) {
|
|
338
|
+
expect(matrix.m[index]).toEqual(-flipped.m[index]);
|
|
339
|
+
}
|
|
340
|
+
else {
|
|
341
|
+
expect(matrix.m[index]).toEqual(flipped.m[index]);
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
});
|
|
345
|
+
});
|
|
346
|
+
const identityArray = [
|
|
347
|
+
1,
|
|
348
|
+
0,
|
|
349
|
+
0,
|
|
350
|
+
0,
|
|
351
|
+
0,
|
|
352
|
+
1,
|
|
353
|
+
0,
|
|
354
|
+
0,
|
|
355
|
+
0,
|
|
356
|
+
0,
|
|
357
|
+
1,
|
|
358
|
+
0,
|
|
359
|
+
0,
|
|
360
|
+
0,
|
|
361
|
+
0,
|
|
362
|
+
1,
|
|
363
|
+
];
|
|
364
|
+
const zeroArray = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
|
|
365
|
+
const sequentialArray = [
|
|
366
|
+
1,
|
|
367
|
+
2,
|
|
368
|
+
3,
|
|
369
|
+
4,
|
|
370
|
+
5,
|
|
371
|
+
6,
|
|
372
|
+
7,
|
|
373
|
+
8,
|
|
374
|
+
9,
|
|
375
|
+
10,
|
|
376
|
+
11,
|
|
377
|
+
12,
|
|
378
|
+
13,
|
|
379
|
+
14,
|
|
380
|
+
15,
|
|
381
|
+
16,
|
|
382
|
+
];
|
|
383
|
+
//# sourceMappingURL=Matrix.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Matrix.test.js","sourceRoot":"","sources":["../../../src/ValueObjects/Matrix.test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,MAAM,EAAe,MAAM,UAAU,CAAC;AAC/C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,QAAQ,CAAC,qBAAqB,EAAE,GAAG,EAAE;IACnC,EAAE,CAAC,0BAA0B,EAAE,GAAG,EAAE;QAClC,MAAM,QAAQ,GAAG,MAAM,CAAC,QAAQ,EAAE,CAAC;QACnC,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,aAAa,CAAC,CAAC;QAC3C,MAAM,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;IACrC,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,qBAAqB,EAAE,GAAG,EAAE;QAC7B,MAAM,QAAQ,GAAG,MAAM,CAAC,IAAI,EAAE,CAAC;QAC/B,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,SAAS,CAAC,CAAC;QACvC,MAAM,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;IACrC,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,0CAA0C,EAAE,GAAG,EAAE;QAClD,MAAM,EAAE,GAAG,IAAI,MAAM,CAAC,eAAe,CAAC,CAAC;QACvC,MAAM,EAAE,GAAG,IAAI,MAAM,CAAC,eAAe,CAAC,CAAC;QACvC,MAAM,EAAE,GAAG,IAAI,MAAM,CAAC,SAAS,CAAC,CAAC;QAEjC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAC3C,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;IAC9C,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,kCAAkC,EAAE,GAAG,EAAE;QAC1C,MAAM,EAAE,GAAG,IAAI,MAAM,CAAC,eAAe,CAAC,CAAC;QACvC,MAAM,EAAE,GAAG,IAAI,MAAM,CAAC,eAAe,CAAC,CAAC;QAEvC,MAAM,CAAC,EAAE,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;IACzB,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,yBAAyB,EAAE,GAAG,EAAE;QACjC,MAAM,EAAE,GAAG,IAAI,MAAM,CAAC,eAAe,CAAC,CAAC;QAEvC,MAAM,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,OAAO,CAAC,IAAI,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;IAC1D,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,0BAA0B,EAAE,GAAG,EAAE;QAClC,MAAM,EAAE,GAAG,IAAI,MAAM,CAAC,eAAe,CAAC,CAAC;QACvC,MAAM,EAAE,GAAG,IAAI,MAAM,CAAC;YACpB,EAAE;YACF,EAAE;YACF,EAAE;YACF,EAAE;YACF,EAAE;YACF,EAAE;YACF,EAAE;YACF,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;SACF,CAAC,CAAC;QACH,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC;YAC1B,GAAG;YACH,GAAG;YACH,GAAG;YACH,GAAG;YACH,GAAG;YACH,GAAG;YACH,GAAG;YACH,GAAG;YACH,GAAG;YACH,GAAG;YACH,GAAG;YACH,GAAG;YACH,EAAE;YACF,EAAE;YACF,EAAE;YACF,EAAE;SACH,CAAC,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;QACvC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;IACvC,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,6BAA6B,EAAE,GAAG,EAAE;QACrC,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC;QAC3B,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC;QAC5B,MAAM,GAAG,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;QAElC,MAAM,GAAG,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QAC5C,MAAM,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC;IACzC,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,mCAAmC,EAAE,GAAG,EAAE;QAC3C,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QACpC,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC;QAC5B,MAAM,GAAG,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;QAElC,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QACjD,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC;YAC1B,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;YAED,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;YAED,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;YAED,EAAE;YACF,EAAE;YACF,EAAE;YACF,CAAC;SACF,CAAC,CAAC;QACH,MAAM,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;IACrC,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,8BAA8B,EAAE,GAAG,EAAE;QACtC,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC;QAC3B,MAAM,KAAK,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACnC,MAAM,GAAG,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;QAElC,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QACjD,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC;YAC1B,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;YAED,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;YAED,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;YAED,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;SACF,CAAC,CAAC;QACH,MAAM,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;IACrC,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,iCAAiC,EAAE,GAAG,EAAE;QACzC,0BAA0B;QAC1B,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC;QAC3B,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC;QAC5B,MAAM,GAAG,GAAG,UAAU,CAAC,SAAS,CAC9B,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CACrB,CAAC;QAEF,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QACjD,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,kBAAkB,CAAC,CAAC;QACtD,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,mBAAmB,CAAC,CAAC;QACvD,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,kBAAkB,CAAC,CAAC;QAEtD,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,kBAAkB,CAAC,CAAC;QACvD,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,kBAAkB,CAAC,CAAC;QACvD,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,mBAAmB,CAAC,CAAC;QAEvD,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,kBAAkB,CAAC,CAAC;QACtD,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,kBAAkB,CAAC,CAAC;QACvD,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,mBAAmB,CAAC,CAAC;IAC3D,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,0BAA0B,EAAE,GAAG,EAAE;QAClC,MAAM,UAAU,GAAG,IAAI,MAAM,CAAC,eAAe,CAAC,CAAC;QAC/C,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QAE1C,MAAM,QAAQ,GAAG,MAAM,CAAC,QAAQ,EAAE,CAAC;QACnC,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QAExC,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QACpC,MAAM,KAAK,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACnC,MAAM,GAAG,GAAG,UAAU,CAAC,SAAS,CAC9B,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CACrB,CAAC;QAEF,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QACjD,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,WAAW,CAAC,kBAAkB,CAAC,CAAC,CAAC,yBAAyB;IACzF,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,yBAAyB,EAAE,GAAG,EAAE;QACjC,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QACpC,MAAM,KAAK,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACnC,MAAM,GAAG,GAAG,UAAU,CAAC,SAAS,CAC9B,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CACrB,CAAC;QAEF,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QACjD,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IAC5C,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,mBAAmB,EAAE,GAAG,EAAE;QAC3B,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QACpC,MAAM,KAAK,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACnC,MAAM,GAAG,GAAG,UAAU,CAAC,SAAS,CAC9B,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CACrB,CAAC;QAEF,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QACjD,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QAC9C,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QAC9C,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;IAChD,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,4BAA4B,EAAE,GAAG,EAAE;QACpC,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QACpC,MAAM,KAAK,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACpC,MAAM,GAAG,GAAG,UAAU,CAAC,SAAS,CAC9B,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CACrB,CAAC;QAEF,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QACjD,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QAC9C,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QAC9C,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;IAChD,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,2BAA2B,EAAE,GAAG,EAAE;QACnC,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QACpC,MAAM,KAAK,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACpC,MAAM,GAAG,GAAG,UAAU,CAAC,SAAS,CAC9B,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CACrB,CAAC;QAEF,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QACjD,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,GAAG,EAAE,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC;QAEpE,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IACxE,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,sBAAsB,EAAE,GAAG,EAAE;QAC9B,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QACpC,MAAM,KAAK,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACnC,MAAM,GAAG,GAAG,UAAU,CAAC,SAAS,CAC9B,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CACrB,CAAC;QACF,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QAEjD,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,QAAQ,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IACjE,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,+BAA+B,EAAE,GAAG,EAAE;QACvC,MAAM,EAAE,GAAG,IAAI,MAAM,CAAC,eAAe,CAAC,CAAC;QACvC,MAAM,YAAY,GAAgB,CAAC,GAAG,eAAe,CAAC,CAAC;QACvD,YAAY,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE;YAC9B,YAAY,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,CAAC,qBAAqB;QACrD,CAAC,CAAC,CAAC;QACH,MAAM,MAAM,GAAG,IAAI,MAAM,CAAC,YAAY,CAAC,CAAC;QAExC,MAAM,aAAa,GAAgB,CAAC,GAAG,eAAe,CAAC,CAAC;QACxD,aAAa,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE;YAC/B,aAAa,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,CAAC,qBAAqB;QACtD,CAAC,CAAC,CAAC;QACH,MAAM,OAAO,GAAG,IAAI,MAAM,CAAC,aAAa,CAAC,CAAC;QAE1C,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QACvD,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QAExD,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QACxD,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;IAC3D,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,kDAAkD,EAAE,GAAG,EAAE;QAC1D,MAAM,QAAQ,GAAG,MAAM,CAAC,QAAQ,EAAE,CAAC;QACnC,MAAM,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QAEzC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IACzD,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,kBAAkB,EAAE,GAAG,EAAE;QAC1B,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QACpC,MAAM,KAAK,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACnC,MAAM,GAAG,GAAG,UAAU,CAAC,SAAS,CAC9B,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CACrB,CAAC;QACF,MAAM,GAAG,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QAC5C,MAAM,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;QAEpC,2BAA2B;QAC3B,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC;YAC1B,mBAAmB;YACnB,CAAC,mBAAmB;YACpB,oBAAoB;YACpB,CAAC,CAAC;YACF,kBAAkB;YAClB,CAAC,kBAAkB;YACnB,CAAC,mBAAmB;YACpB,CAAC;YACD,mBAAmB;YACnB,mBAAmB;YACnB,CAAC,oBAAoB;YACrB,CAAC,CAAC;YACF,CAAC,iBAAiB;YAClB,iBAAiB;YACjB,kBAAkB;YAClB,CAAC;SACF,CAAC,CAAC;QAEH,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IACzD,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,mDAAmD,EAAE,GAAG,EAAE;QAC3D,MAAM,IAAI,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QAClC,MAAM,KAAK,GAAG,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;QACrC,MAAM,cAAc,GAAG,MAAM,CAAC,qBAAqB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;QAEjE,2BAA2B;QAC3B,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC;YAC1B,kBAAkB;YAClB,kBAAkB;YAClB,CAAC,kBAAkB;YACnB,CAAC;YACD,CAAC,kBAAkB;YACnB,iBAAiB;YACjB,kBAAkB;YAClB,CAAC;YACD,kBAAkB;YAClB,mBAAmB;YACnB,kBAAkB;YAClB,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;YACD,CAAC;SACF,CAAC,CAAC;QAEH,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IAC/D,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,qCAAqC,EAAE,GAAG,EAAE;QAC7C,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QACpC,MAAM,KAAK,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACnC,MAAM,GAAG,GAAG,UAAU,CAAC,SAAS,CAC9B,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CACrB,CAAC;QACF,MAAM,GAAG,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QAE5C,MAAM,QAAQ,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACtC,MAAM,MAAM,GAAG,MAAM,CAAC,oBAAoB,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAC;QAC1D,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,MAAM,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAC7D,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAClE,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IAC3D,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,+BAA+B,EAAE,GAAG,EAAE;QACvC,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QACpC,MAAM,KAAK,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACnC,MAAM,GAAG,GAAG,UAAU,CAAC,SAAS,CAC9B,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CACrB,CAAC;QACF,MAAM,GAAG,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QAE5C,MAAM,WAAW,GAAG,UAAU,CAAC,SAAS,CACtC,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,EACtB,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,EACtB,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,CACvB,CAAC;QACF,MAAM,MAAM,GAAG,MAAM,CAAC,iBAAiB,CAAC,GAAG,EAAE,WAAW,CAAC,CAAC;QAC1D,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,MAAM,CAAC,QAAQ,EAAE,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QACrE,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,WAAW,EAAE,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAC7D,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IAC3D,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,4BAA4B,EAAE,GAAG,EAAE;QACpC,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QACpC,MAAM,KAAK,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACnC,MAAM,GAAG,GAAG,UAAU,CAAC,SAAS,CAC9B,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CACrB,CAAC;QACF,MAAM,GAAG,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QAE5C,MAAM,QAAQ,GAAG,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACtC,MAAM,MAAM,GAAG,MAAM,CAAC,cAAc,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAC;QACpD,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,MAAM,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAC7D,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,WAAW,EAAE,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAC7D,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9D,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,sCAAsC,EAAE,GAAG,EAAE;QAC9C,MAAM,YAAY,GAAG,IAAI,YAAY,CAAC,EAAE,CAAC,CAAC;QAC1C,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,CAAC;YACxC,YAAY,CAAC,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,CAAC;QAED,MAAM,MAAM,GAAG,MAAM,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC;QAErD,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,CAAC;YACxC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC;QAC7C,CAAC;IACH,CAAC,CAAC,CAAA;IAEF,EAAE,CAAC,oFAAoF,EAAE,GAAG,EAAE;QAC5F,MAAM,YAAY,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;QACzC,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;QAC1B,MAAM,MAAM,GAAG,MAAM,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC;QAErD,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,UAAU,EAAE,CAAC;QACnC,MAAM,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC;IAC5C,CAAC,CAAC,CAAA;IAEF,EAAE,CAAC,4CAA4C,EAAE,GAAG,EAAE;QACpD,MAAM,MAAM,GAAG,IAAI,MAAM,CAAC,eAAe,CAAC,CAAC;QAC3C,MAAM,OAAO,GAAG,MAAM,CAAC,uBAAuB,CAAC,MAAM,CAAC,CAAC;QAEvD,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,CAAC;YACxC,IAAI,KAAK,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC,IAAI,KAAK,KAAK,EAAE,EAAE,CAAC;gBAC7E,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;YACrD,CAAC;iBAAM,CAAC;gBACN,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;YACpD,CAAC;QACH,CAAC;IACH,CAAC,CAAC,CAAA;IAEF,EAAE,CAAC,6CAA6C,EAAE,GAAG,EAAE;QACrD,MAAM,MAAM,GAAG,IAAI,MAAM,CAAC,eAAe,CAAC,CAAC;QAC3C,MAAM,OAAO,GAAG,MAAM,CAAC,wBAAwB,CAAC,MAAM,CAAC,CAAC;QAExD,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,CAAC;YACxC,IAAI,KAAK,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC,IAAI,KAAK,KAAK,EAAE,IAAI,KAAK,KAAK,EAAE,EAAE,CAAC;gBAC/D,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;YACrD,CAAC;iBAAM,CAAC;gBACN,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;YACpD,CAAC;QACH,CAAC;IACH,CAAC,CAAC,CAAA;AACJ,CAAC,CAAC,CAAC;AAEH,MAAM,aAAa,GAAgB;IACjC,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;CACF,CAAC;AAEF,MAAM,SAAS,GAAgB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;AAEhF,MAAM,eAAe,GAAgB;IACnC,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,EAAE;IACF,EAAE;IACF,EAAE;IACF,EAAE;IACF,EAAE;IACF,EAAE;IACF,EAAE;CACH,CAAC","sourcesContent":["import { Angle } from \"./Angle\";\r\nimport { Matrix, MatrixArray } from \"./Matrix\";\r\nimport { Quaternion } from \"./Quaternion\";\r\nimport { Vector3 } from \"./Vector3\";\r\n\r\ndescribe(\"Matrix Value Object\", () => {\r\n it(\"Forms an identity matrix\", () => {\r\n const identity = Matrix.Identity();\r\n const expected = new Matrix(identityArray);\r\n expect(identity).toEqual(expected);\r\n });\r\n\r\n it(\"Forms a zero matrix\", () => {\r\n const identity = Matrix.Zero();\r\n const expected = new Matrix(zeroArray);\r\n expect(identity).toEqual(expected);\r\n });\r\n\r\n it(\"Checks to see if two matricies are equal\", () => {\r\n const m1 = new Matrix(sequentialArray);\r\n const m2 = new Matrix(sequentialArray);\r\n const m3 = new Matrix(zeroArray);\r\n\r\n expect(Matrix.Equal(m1, m2)).toEqual(true);\r\n expect(Matrix.Equal(m1, m3)).toEqual(false);\r\n });\r\n\r\n it(\"Checks for eqaulity during tests\", () => {\r\n const m1 = new Matrix(sequentialArray);\r\n const m2 = new Matrix(sequentialArray);\r\n\r\n expect(m1).toEqual(m2);\r\n });\r\n\r\n it(\"Returns the translation\", () => {\r\n const m1 = new Matrix(sequentialArray);\r\n\r\n expect(m1.translation).toEqual(new Vector3(13, 14, 15));\r\n });\r\n\r\n it(\"Multipiles two matricies\", () => {\r\n const m1 = new Matrix(sequentialArray);\r\n const m2 = new Matrix([\r\n 16,\r\n 15,\r\n 14,\r\n 13,\r\n 12,\r\n 11,\r\n 10,\r\n 9,\r\n 8,\r\n 7,\r\n 6,\r\n 5,\r\n 4,\r\n 3,\r\n 2,\r\n 1,\r\n ]);\r\n const expected = new Matrix([\r\n 386,\r\n 444,\r\n 502,\r\n 560,\r\n 274,\r\n 316,\r\n 358,\r\n 400,\r\n 162,\r\n 188,\r\n 214,\r\n 240,\r\n 50,\r\n 60,\r\n 70,\r\n 80,\r\n ]);\r\n const result = Matrix.Multiply(m1, m2);\r\n expect(result.m).toEqual(expected.m);\r\n });\r\n\r\n it(\"Composes an Identity matrix\", () => {\r\n const pos = Vector3.Zero();\r\n const scale = Vector3.One();\r\n const rot = Quaternion.Identity();\r\n\r\n const mat = Matrix.Compose(scale, rot, pos);\r\n expect(mat).toEqual(Matrix.Identity());\r\n });\r\n\r\n it(\"Composes a matrix with a position\", () => {\r\n const pos = new Vector3(11, 22, 33);\r\n const scale = Vector3.One();\r\n const rot = Quaternion.Identity();\r\n\r\n const composed = Matrix.Compose(scale, rot, pos);\r\n const expected = new Matrix([\r\n 1,\r\n 0,\r\n 0,\r\n 0,\r\n\r\n 0,\r\n 1,\r\n 0,\r\n 0,\r\n\r\n 0,\r\n 0,\r\n 1,\r\n 0,\r\n\r\n 11,\r\n 22,\r\n 33,\r\n 1,\r\n ]);\r\n expect(composed).toEqual(expected);\r\n });\r\n\r\n it(\"Composes a matrix with scale\", () => {\r\n const pos = Vector3.Zero();\r\n const scale = new Vector3(6, 7, 8);\r\n const rot = Quaternion.Identity();\r\n\r\n const composed = Matrix.Compose(scale, rot, pos);\r\n const expected = new Matrix([\r\n 6,\r\n 0,\r\n 0,\r\n 0,\r\n\r\n 0,\r\n 7,\r\n 0,\r\n 0,\r\n\r\n 0,\r\n 0,\r\n 8,\r\n 0,\r\n\r\n 0,\r\n 0,\r\n 0,\r\n 1,\r\n ]);\r\n expect(composed).toEqual(expected);\r\n });\r\n\r\n it(\"Composes a matrix with rotation\", () => {\r\n // Number are from Babylon\r\n const pos = Vector3.Zero();\r\n const scale = Vector3.One();\r\n const rot = Quaternion.FromEuler(\r\n Angle.FromRadians(1),\r\n Angle.FromRadians(2),\r\n Angle.FromRadians(3)\r\n );\r\n\r\n const composed = Matrix.Compose(scale, rot, pos);\r\n expect(composed.m[0]).toBeCloseTo(0.5199598670005798);\r\n expect(composed.m[1]).toBeCloseTo(0.07624746859073639);\r\n expect(composed.m[2]).toBeCloseTo(0.8507808446884155);\r\n\r\n expect(composed.m[4]).toBeCloseTo(-0.6987635493278503);\r\n expect(composed.m[5]).toBeCloseTo(-0.5348952412605286);\r\n expect(composed.m[6]).toBeCloseTo(0.47499117255210876);\r\n\r\n expect(composed.m[8]).toBeCloseTo(0.4912954866886139);\r\n expect(composed.m[9]).toBeCloseTo(-0.8414709568023682);\r\n expect(composed.m[10]).toBeCloseTo(-0.22484509646892548);\r\n });\r\n\r\n it(\"Calculates a determinant\", () => {\r\n const sequential = new Matrix(sequentialArray);\r\n expect(sequential.determinate).toEqual(0);\r\n\r\n const identity = Matrix.Identity();\r\n expect(identity.determinate).toEqual(1);\r\n\r\n const pos = new Vector3(23, 26, 29);\r\n const scale = new Vector3(6, 7, 8);\r\n const rot = Quaternion.FromEuler(\r\n Angle.FromRadians(1),\r\n Angle.FromRadians(2),\r\n Angle.FromRadians(3)\r\n );\r\n\r\n const composed = Matrix.Compose(scale, rot, pos);\r\n expect(composed.determinate).toBeCloseTo(335.99999908851385); // Number is from babylon\r\n });\r\n\r\n it(\"Returns the translation\", () => {\r\n const pos = new Vector3(23, 26, 29);\r\n const scale = new Vector3(6, 7, 8);\r\n const rot = Quaternion.FromEuler(\r\n Angle.FromRadians(1),\r\n Angle.FromRadians(2),\r\n Angle.FromRadians(3)\r\n );\r\n\r\n const composed = Matrix.Compose(scale, rot, pos);\r\n expect(composed.translation).toEqual(pos);\r\n });\r\n\r\n it(\"Returns the scale\", () => {\r\n const pos = new Vector3(23, 26, 29);\r\n const scale = new Vector3(6, 7, 8);\r\n const rot = Quaternion.FromEuler(\r\n Angle.FromRadians(1),\r\n Angle.FromRadians(2),\r\n Angle.FromRadians(3)\r\n );\r\n\r\n const composed = Matrix.Compose(scale, rot, pos);\r\n expect(composed.scale.x).toBeCloseTo(scale.x);\r\n expect(composed.scale.y).toBeCloseTo(scale.y);\r\n expect(composed.scale.z).toBeCloseTo(scale.z);\r\n });\r\n\r\n it(\"Returns the negative scale\", () => {\r\n const pos = new Vector3(23, 26, 29);\r\n const scale = new Vector3(6, -7, 8);\r\n const rot = Quaternion.FromEuler(\r\n Angle.FromRadians(1),\r\n Angle.FromRadians(2),\r\n Angle.FromRadians(3)\r\n );\r\n\r\n const composed = Matrix.Compose(scale, rot, pos);\r\n expect(composed.scale.x).toBeCloseTo(scale.x);\r\n expect(composed.scale.y).toBeCloseTo(scale.y);\r\n expect(composed.scale.z).toBeCloseTo(scale.z);\r\n });\r\n\r\n it(\"Returns a rotation matrix\", () => {\r\n const pos = new Vector3(23, 26, 29);\r\n const scale = new Vector3(6, -7, 8);\r\n const rot = Quaternion.FromEuler(\r\n Angle.FromRadians(1),\r\n Angle.FromRadians(2),\r\n Angle.FromRadians(3)\r\n );\r\n\r\n const composed = Matrix.Compose(scale, rot, pos);\r\n const expected = Matrix.Compose(Vector3.One(), rot, Vector3.Zero());\r\n\r\n expect(Matrix.Close(composed.rotationMatrix, expected)).toEqual(true);\r\n });\r\n\r\n it(\"Returns the rotation\", () => {\r\n const pos = new Vector3(23, 26, 29);\r\n const scale = new Vector3(6, 7, 8);\r\n const rot = Quaternion.FromEuler(\r\n Angle.FromRadians(1),\r\n Angle.FromRadians(2),\r\n Angle.FromRadians(3)\r\n );\r\n const composed = Matrix.Compose(scale, rot, pos);\r\n\r\n expect(Quaternion.Close(composed.rotation, rot)).toEqual(true);\r\n });\r\n\r\n it(\"Checks if matricies are close\", () => {\r\n const m1 = new Matrix(sequentialArray);\r\n const biggerValues: MatrixArray = [...sequentialArray];\r\n biggerValues.forEach((val, i) => {\r\n biggerValues[i] = val + 0.01; // Just a little bump\r\n });\r\n const bigger = new Matrix(biggerValues);\r\n\r\n const smallerValues: MatrixArray = [...sequentialArray];\r\n smallerValues.forEach((val, i) => {\r\n smallerValues[i] = val - 0.01; // Just a little bump\r\n });\r\n const smaller = new Matrix(smallerValues);\r\n\r\n expect(Matrix.Close(m1, bigger, 0.0101)).toEqual(true);\r\n expect(Matrix.Close(m1, bigger, 0.0099)).toEqual(false);\r\n\r\n expect(Matrix.Close(m1, smaller, 0.0101)).toEqual(true);\r\n expect(Matrix.Close(m1, smaller, 0.0099)).toEqual(false);\r\n });\r\n\r\n it(\"Results in an Identity if we invert the identity\", () => {\r\n const identity = Matrix.Identity();\r\n const inverted = Matrix.Invert(identity);\r\n\r\n expect(Matrix.Close(inverted, identity)).toEqual(true);\r\n });\r\n\r\n it(\"Inverts a matrix\", () => {\r\n const pos = new Vector3(23, 26, 29);\r\n const scale = new Vector3(6, 7, 8);\r\n const rot = Quaternion.FromEuler(\r\n Angle.FromRadians(1),\r\n Angle.FromRadians(2),\r\n Angle.FromRadians(3)\r\n );\r\n const mat = Matrix.Compose(scale, rot, pos);\r\n const inverted = Matrix.Invert(mat);\r\n\r\n // Numbers are from babylon\r\n const expected = new Matrix([\r\n 0.08665996789932251,\r\n -0.09982336312532425,\r\n 0.061411935836076736,\r\n -0,\r\n 0.0127079077064991,\r\n -0.0764136016368866,\r\n -0.10518387705087662,\r\n 0,\r\n 0.14179681241512299,\r\n 0.06785587966442108,\r\n -0.028105635195970535,\r\n -0,\r\n -6.435692310333252,\r\n 2.314870595932007,\r\n 2.1373696327209473,\r\n 1,\r\n ]);\r\n\r\n expect(Matrix.Close(inverted, expected)).toEqual(true);\r\n });\r\n\r\n it(\"Creates a rotation matrix from an axis ange angle\", () => {\r\n const axis = new Vector3(1, 2, 3);\r\n const angle = Angle.FromRadians(1.3);\r\n const rotationMatrix = Matrix.FromRotationAxisAngle(axis, angle);\r\n\r\n // Numbers are from babylon\r\n const expected = new Matrix([\r\n 0.3198203444480896,\r\n 0.8772082924842834,\r\n -0.3580789864063263,\r\n 0,\r\n -0.6679222583770752,\r\n 0.476784884929657,\r\n 0.5714508295059204,\r\n 0,\r\n 0.6720080375671387,\r\n 0.05640731751918793,\r\n 0.7383924126625061,\r\n 0,\r\n 0,\r\n 0,\r\n 0,\r\n 1,\r\n ]);\r\n\r\n expect(Matrix.Close(rotationMatrix, expected)).toEqual(true);\r\n });\r\n\r\n it(\"Sets the transformation of a matrix\", () => {\r\n const pos = new Vector3(23, 26, 29);\r\n const scale = new Vector3(6, 7, 8);\r\n const rot = Quaternion.FromEuler(\r\n Angle.FromRadians(1),\r\n Angle.FromRadians(2),\r\n Angle.FromRadians(3)\r\n );\r\n const mat = Matrix.Compose(scale, rot, pos);\r\n\r\n const newTrans = new Vector3(3, 2, 1);\r\n const newMat = Matrix.SetMatrixTranslation(mat, newTrans);\r\n expect(Quaternion.Close(newMat.rotation, rot)).toEqual(true);\r\n expect(Vector3.Close(newMat.translation, newTrans)).toEqual(true);\r\n expect(Vector3.Close(newMat.scale, scale)).toEqual(true);\r\n });\r\n\r\n it(\"Sets the rotation of a matrix\", () => {\r\n const pos = new Vector3(23, 26, 29);\r\n const scale = new Vector3(6, 7, 8);\r\n const rot = Quaternion.FromEuler(\r\n Angle.FromRadians(1),\r\n Angle.FromRadians(2),\r\n Angle.FromRadians(3)\r\n );\r\n const mat = Matrix.Compose(scale, rot, pos);\r\n\r\n const newRotation = Quaternion.FromEuler(\r\n Angle.FromRadians(1.1),\r\n Angle.FromRadians(2.2),\r\n Angle.FromRadians(3.3)\r\n );\r\n const newMat = Matrix.SetMatrixRotation(mat, newRotation);\r\n expect(Quaternion.Close(newMat.rotation, newRotation)).toEqual(true);\r\n expect(Vector3.Close(newMat.translation, pos)).toEqual(true);\r\n expect(Vector3.Close(newMat.scale, scale)).toEqual(true);\r\n });\r\n\r\n it(\"Sets the scale of a matrix\", () => {\r\n const pos = new Vector3(23, 26, 29);\r\n const scale = new Vector3(6, 7, 8);\r\n const rot = Quaternion.FromEuler(\r\n Angle.FromRadians(1),\r\n Angle.FromRadians(2),\r\n Angle.FromRadians(3)\r\n );\r\n const mat = Matrix.Compose(scale, rot, pos);\r\n\r\n const newScale = new Vector3(1, 2, 3);\r\n const newMat = Matrix.SetMatrixScale(mat, newScale);\r\n expect(Quaternion.Close(newMat.rotation, rot)).toEqual(true);\r\n expect(Vector3.Close(newMat.translation, pos)).toEqual(true);\r\n expect(Vector3.Close(newMat.scale, newScale)).toEqual(true);\r\n });\r\n\r\n it(\"Makes a Matrix from a Float 32 Array\", () => {\r\n const float32Array = new Float32Array(16);\r\n for (let index = 0; index < 16; index++) {\r\n float32Array[index] = index * 2;\r\n }\r\n\r\n const matrix = Matrix.FromFloat32Array(float32Array);\r\n\r\n for (let index = 0; index < 16; index++) {\r\n expect(matrix.m[index]).toEqual(index * 2);\r\n }\r\n })\r\n\r\n it(\"Logs an error and return the identity if the float 32 array does not have 16 itesm\", () => {\r\n const float32Array = new Float32Array(1);\r\n console.error = jest.fn();\r\n const matrix = Matrix.FromFloat32Array(float32Array);\r\n\r\n expect(console.error).toBeCalled();\r\n expect(matrix).toEqual(Matrix.Identity());\r\n })\r\n\r\n it(\"Flips the handedness of a transform matrix\", () => {\r\n const matrix = new Matrix(sequentialArray);\r\n const flipped = Matrix.FlipTransformMatrixHand(matrix);\r\n\r\n for (let index = 0; index < 16; index++) {\r\n if (index === 2 || index === 6 || index === 8 || index === 9 || index === 14) {\r\n expect(matrix.m[index]).toEqual(-flipped.m[index]);\r\n } else {\r\n expect(matrix.m[index]).toEqual(flipped.m[index]);\r\n }\r\n }\r\n })\r\n\r\n it(\"Flips the handedness of a projection matrix\", () => {\r\n const matrix = new Matrix(sequentialArray);\r\n const flipped = Matrix.FlipProjectionMatrixHand(matrix);\r\n\r\n for (let index = 0; index < 16; index++) {\r\n if (index === 8 || index === 9 || index === 10 || index === 11) {\r\n expect(matrix.m[index]).toEqual(-flipped.m[index]);\r\n } else {\r\n expect(matrix.m[index]).toEqual(flipped.m[index]);\r\n }\r\n }\r\n })\r\n});\r\n\r\nconst identityArray: MatrixArray = [\r\n 1,\r\n 0,\r\n 0,\r\n 0,\r\n 0,\r\n 1,\r\n 0,\r\n 0,\r\n 0,\r\n 0,\r\n 1,\r\n 0,\r\n 0,\r\n 0,\r\n 0,\r\n 1,\r\n];\r\n\r\nconst zeroArray: MatrixArray = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];\r\n\r\nconst sequentialArray: MatrixArray = [\r\n 1,\r\n 2,\r\n 3,\r\n 4,\r\n 5,\r\n 6,\r\n 7,\r\n 8,\r\n 9,\r\n 10,\r\n 11,\r\n 12,\r\n 13,\r\n 14,\r\n 15,\r\n 16,\r\n];\r\n"]}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { Vector3 } from "../ValueObjects/Vector3";
|
|
2
|
+
export class ParametricLine {
|
|
3
|
+
// See https://planetcalc.com/8253/
|
|
4
|
+
static FromTwoPoint(p1, p2) {
|
|
5
|
+
const dir = Vector3.Subtract(p2, p1).unit;
|
|
6
|
+
return this.FromPointDirection(p1, dir);
|
|
7
|
+
}
|
|
8
|
+
static FromPointDirection(point, direction) {
|
|
9
|
+
return new ParametricLine({
|
|
10
|
+
x0: point.x,
|
|
11
|
+
y0: point.y,
|
|
12
|
+
z0: point.z,
|
|
13
|
+
a: direction.x,
|
|
14
|
+
b: direction.y,
|
|
15
|
+
c: direction.z,
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
static Forward() {
|
|
19
|
+
const p = Vector3.Zero();
|
|
20
|
+
const d = new Vector3(0, 0, 1);
|
|
21
|
+
return this.FromPointDirection(p, d);
|
|
22
|
+
}
|
|
23
|
+
static Backward() {
|
|
24
|
+
const p = Vector3.Zero();
|
|
25
|
+
const d = new Vector3(0, 0, -1);
|
|
26
|
+
return this.FromPointDirection(p, d);
|
|
27
|
+
}
|
|
28
|
+
static Up() {
|
|
29
|
+
const p = Vector3.Zero();
|
|
30
|
+
const d = new Vector3(0, 1, 0);
|
|
31
|
+
return this.FromPointDirection(p, d);
|
|
32
|
+
}
|
|
33
|
+
static Down() {
|
|
34
|
+
const p = Vector3.Zero();
|
|
35
|
+
const d = new Vector3(0, -1, 0);
|
|
36
|
+
return this.FromPointDirection(p, d);
|
|
37
|
+
}
|
|
38
|
+
static Left() {
|
|
39
|
+
const p = Vector3.Zero();
|
|
40
|
+
const d = new Vector3(-1, 0, 0);
|
|
41
|
+
return this.FromPointDirection(p, d);
|
|
42
|
+
}
|
|
43
|
+
static Right() {
|
|
44
|
+
const p = Vector3.Zero();
|
|
45
|
+
const d = new Vector3(1, 0, 0);
|
|
46
|
+
return this.FromPointDirection(p, d);
|
|
47
|
+
}
|
|
48
|
+
static GetPointAtDistance(line, distance) {
|
|
49
|
+
const x = line.x0 + line.a * distance;
|
|
50
|
+
const y = line.y0 + line.b * distance;
|
|
51
|
+
const z = line.z0 + line.c * distance;
|
|
52
|
+
return new Vector3(x, y, z);
|
|
53
|
+
}
|
|
54
|
+
static GetDistanceToPoint(line, point) {
|
|
55
|
+
return Vector3.Subtract(line.origin, point).magnitude;
|
|
56
|
+
}
|
|
57
|
+
get origin() {
|
|
58
|
+
return new Vector3(this.x0, this.y0, this.z0);
|
|
59
|
+
}
|
|
60
|
+
get direction() {
|
|
61
|
+
return new Vector3(this.a, this.b, this.c);
|
|
62
|
+
}
|
|
63
|
+
constructor(parameters) {
|
|
64
|
+
this.x0 = parameters.x0;
|
|
65
|
+
this.y0 = parameters.y0;
|
|
66
|
+
this.z0 = parameters.z0;
|
|
67
|
+
const dir = new Vector3(parameters.a, parameters.b, parameters.c).unit;
|
|
68
|
+
this.a = dir.x;
|
|
69
|
+
this.b = dir.y;
|
|
70
|
+
this.c = dir.z;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
//# sourceMappingURL=ParametricLine.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ParametricLine.js","sourceRoot":"","sources":["../../../src/ValueObjects/ParametricLine.ts"],"names":[],"mappings":"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","sourcesContent":["import { Vector3 } from \"../ValueObjects/Vector3\";\r\n\r\nexport interface LineParameters {\r\n x0: number;\r\n y0: number;\r\n z0: number;\r\n a: number;\r\n b: number;\r\n c: number;\r\n}\r\n\r\nexport class ParametricLine {\r\n // See https://planetcalc.com/8253/\r\n\r\n public static FromTwoPoint(p1: Vector3, p2: Vector3): ParametricLine {\r\n const dir = Vector3.Subtract(p2, p1).unit;\r\n return this.FromPointDirection(p1, dir);\r\n }\r\n\r\n public static FromPointDirection(\r\n point: Vector3,\r\n direction: Vector3\r\n ): ParametricLine {\r\n return new ParametricLine({\r\n x0: point.x,\r\n y0: point.y,\r\n z0: point.z,\r\n a: direction.x,\r\n b: direction.y,\r\n c: direction.z,\r\n });\r\n }\r\n\r\n public static Forward(): ParametricLine {\r\n const p = Vector3.Zero();\r\n const d = new Vector3(0, 0, 1);\r\n return this.FromPointDirection(p, d);\r\n }\r\n\r\n public static Backward(): ParametricLine {\r\n const p = Vector3.Zero();\r\n const d = new Vector3(0, 0, -1);\r\n return this.FromPointDirection(p, d);\r\n }\r\n\r\n public static Up(): ParametricLine {\r\n const p = Vector3.Zero();\r\n const d = new Vector3(0, 1, 0);\r\n return this.FromPointDirection(p, d);\r\n }\r\n\r\n public static Down(): ParametricLine {\r\n const p = Vector3.Zero();\r\n const d = new Vector3(0, -1, 0);\r\n return this.FromPointDirection(p, d);\r\n }\r\n\r\n public static Left(): ParametricLine {\r\n const p = Vector3.Zero();\r\n const d = new Vector3(-1, 0, 0);\r\n return this.FromPointDirection(p, d);\r\n }\r\n\r\n public static Right(): ParametricLine {\r\n const p = Vector3.Zero();\r\n const d = new Vector3(1, 0, 0);\r\n return this.FromPointDirection(p, d);\r\n }\r\n\r\n public static GetPointAtDistance(\r\n line: ParametricLine,\r\n distance: number\r\n ): Vector3 {\r\n const x = line.x0 + line.a * distance;\r\n const y = line.y0 + line.b * distance;\r\n const z = line.z0 + line.c * distance;\r\n\r\n return new Vector3(x, y, z);\r\n }\r\n\r\n public static GetDistanceToPoint(\r\n line: ParametricLine,\r\n point: Vector3\r\n ): number {\r\n return Vector3.Subtract(line.origin, point).magnitude;\r\n }\r\n\r\n readonly x0: number;\r\n readonly y0: number;\r\n readonly z0: number;\r\n readonly a: number;\r\n readonly b: number;\r\n readonly c: number;\r\n\r\n get origin(): Vector3 {\r\n return new Vector3(this.x0, this.y0, this.z0);\r\n }\r\n\r\n get direction(): Vector3 {\r\n return new Vector3(this.a, this.b, this.c);\r\n }\r\n\r\n constructor(parameters: LineParameters) {\r\n this.x0 = parameters.x0;\r\n this.y0 = parameters.y0;\r\n this.z0 = parameters.z0;\r\n\r\n const dir = new Vector3(parameters.a, parameters.b, parameters.c).unit;\r\n\r\n this.a = dir.x;\r\n this.b = dir.y;\r\n this.c = dir.z;\r\n }\r\n}\r\n"]}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { Vector3 } from ".";
|
|
2
|
+
import { ParametricLine } from "./ParametricLine";
|
|
3
|
+
test("Setting and getting the parameters", () => {
|
|
4
|
+
const inputParameters = {
|
|
5
|
+
x0: 1,
|
|
6
|
+
y0: 2,
|
|
7
|
+
z0: 3,
|
|
8
|
+
a: 4,
|
|
9
|
+
b: 5,
|
|
10
|
+
c: 6,
|
|
11
|
+
};
|
|
12
|
+
const line = new ParametricLine(inputParameters);
|
|
13
|
+
const dirUnit = new Vector3(4, 5, 6).unit;
|
|
14
|
+
expect(line.x0).toEqual(inputParameters.x0);
|
|
15
|
+
expect(line.y0).toEqual(inputParameters.y0);
|
|
16
|
+
expect(line.z0).toEqual(inputParameters.z0);
|
|
17
|
+
expect(line.a).toBeCloseTo(dirUnit.x);
|
|
18
|
+
expect(line.b).toBeCloseTo(dirUnit.y);
|
|
19
|
+
expect(line.c).toBeCloseTo(dirUnit.z);
|
|
20
|
+
});
|
|
21
|
+
test("Line from point and direction", () => {
|
|
22
|
+
const point = new Vector3(1, 2, 3);
|
|
23
|
+
const dir = new Vector3(10, 20, 30).unit;
|
|
24
|
+
const line = ParametricLine.FromPointDirection(point, dir);
|
|
25
|
+
expect(line.x0).toEqual(1);
|
|
26
|
+
expect(line.y0).toEqual(2);
|
|
27
|
+
expect(line.z0).toEqual(3);
|
|
28
|
+
expect(line.a).toBeCloseTo(dir.x);
|
|
29
|
+
expect(line.b).toBeCloseTo(dir.y);
|
|
30
|
+
expect(line.c).toBeCloseTo(dir.z);
|
|
31
|
+
});
|
|
32
|
+
test("From two points", () => {
|
|
33
|
+
const p1 = new Vector3(1, 2, 3);
|
|
34
|
+
const p2 = new Vector3(4, 5, 6);
|
|
35
|
+
const line = ParametricLine.FromTwoPoint(p1, p2);
|
|
36
|
+
const dir = Vector3.Subtract(p2, p1).unit;
|
|
37
|
+
expect(line.x0).toEqual(1);
|
|
38
|
+
expect(line.y0).toEqual(2);
|
|
39
|
+
expect(line.z0).toEqual(3);
|
|
40
|
+
expect(line.a).toEqual(dir.x);
|
|
41
|
+
expect(line.b).toEqual(dir.y);
|
|
42
|
+
expect(line.c).toEqual(dir.z);
|
|
43
|
+
});
|
|
44
|
+
test("Get point", () => {
|
|
45
|
+
const p1 = new Vector3(1, 2, 3);
|
|
46
|
+
const p2 = new Vector3(4, 5, 6);
|
|
47
|
+
let dir = Vector3.Subtract(p2, p1).unit;
|
|
48
|
+
const distance = 11;
|
|
49
|
+
dir = Vector3.NewVectorOfLength(dir, distance);
|
|
50
|
+
const expectedPoint = Vector3.Add(p1, dir);
|
|
51
|
+
const line = ParametricLine.FromTwoPoint(p1, p2);
|
|
52
|
+
const point = ParametricLine.GetPointAtDistance(line, distance);
|
|
53
|
+
expect(point.array).toEqual(expectedPoint.array);
|
|
54
|
+
});
|
|
55
|
+
test("Get point along forward", () => {
|
|
56
|
+
const line = ParametricLine.Forward();
|
|
57
|
+
const point = ParametricLine.GetPointAtDistance(line, 11);
|
|
58
|
+
expect(point.array).toEqual([0, 0, 11]);
|
|
59
|
+
});
|
|
60
|
+
test("Get point along backwards", () => {
|
|
61
|
+
const line = ParametricLine.Backward();
|
|
62
|
+
const point = ParametricLine.GetPointAtDistance(line, 11);
|
|
63
|
+
expect(point.array).toEqual([0, 0, -11]);
|
|
64
|
+
});
|
|
65
|
+
test("Get point along up", () => {
|
|
66
|
+
const line = ParametricLine.Up();
|
|
67
|
+
const point = ParametricLine.GetPointAtDistance(line, 11);
|
|
68
|
+
expect(point.array).toEqual([0, 11, 0]);
|
|
69
|
+
});
|
|
70
|
+
test("Get point along down", () => {
|
|
71
|
+
const line = ParametricLine.Down();
|
|
72
|
+
const point = ParametricLine.GetPointAtDistance(line, 11);
|
|
73
|
+
expect(point.array).toEqual([0, -11, 0]);
|
|
74
|
+
});
|
|
75
|
+
test("Get point along left", () => {
|
|
76
|
+
const line = ParametricLine.Left();
|
|
77
|
+
const point = ParametricLine.GetPointAtDistance(line, 11);
|
|
78
|
+
expect(point.array).toEqual([-11, 0, 0]);
|
|
79
|
+
});
|
|
80
|
+
test("Get point along right", () => {
|
|
81
|
+
const line = ParametricLine.Right();
|
|
82
|
+
const point = ParametricLine.GetPointAtDistance(line, 11);
|
|
83
|
+
expect(point.array).toEqual([11, 0, 0]);
|
|
84
|
+
});
|
|
85
|
+
test("Check for equality", () => {
|
|
86
|
+
const inputParameters = {
|
|
87
|
+
x0: 1,
|
|
88
|
+
y0: 2,
|
|
89
|
+
z0: 3,
|
|
90
|
+
a: 4,
|
|
91
|
+
b: 5,
|
|
92
|
+
c: 6,
|
|
93
|
+
};
|
|
94
|
+
const line1 = new ParametricLine(inputParameters);
|
|
95
|
+
const line2 = new ParametricLine(inputParameters);
|
|
96
|
+
expect(line1).toEqual(line2);
|
|
97
|
+
});
|
|
98
|
+
test("Geting the origin", () => {
|
|
99
|
+
const origin = new Vector3(1, 2, 3);
|
|
100
|
+
const direction = new Vector3(4, 5, 6).unit;
|
|
101
|
+
const line = ParametricLine.FromPointDirection(origin, direction);
|
|
102
|
+
expect(line.origin).toEqual(origin);
|
|
103
|
+
});
|
|
104
|
+
test("Getting the direction", () => {
|
|
105
|
+
const origin = new Vector3(1, 2, 3);
|
|
106
|
+
const direction = new Vector3(4, 5, 6).unit;
|
|
107
|
+
const line = ParametricLine.FromPointDirection(origin, direction);
|
|
108
|
+
expect(Vector3.Close(line.direction, direction)).toEqual(true);
|
|
109
|
+
});
|
|
110
|
+
test("Ensures the direction is unit", () => {
|
|
111
|
+
const origin = new Vector3(1, 2, 3);
|
|
112
|
+
const direction = new Vector3(4, 5, 6);
|
|
113
|
+
const line = ParametricLine.FromPointDirection(origin, direction);
|
|
114
|
+
expect(line.direction).toEqual(direction.unit);
|
|
115
|
+
});
|
|
116
|
+
test("Get distance to point", () => {
|
|
117
|
+
const origin = new Vector3(1, 2, 3);
|
|
118
|
+
const direction = new Vector3(4, 5, 6);
|
|
119
|
+
const line = ParametricLine.FromPointDirection(origin, direction);
|
|
120
|
+
const point = new Vector3(10, 20, 30);
|
|
121
|
+
const expected = Vector3.Subtract(point, origin).magnitude;
|
|
122
|
+
expect(ParametricLine.GetDistanceToPoint(line, point)).toEqual(expected);
|
|
123
|
+
});
|
|
124
|
+
//# sourceMappingURL=ParametricLine.test.js.map
|