Skip to content

Commit e88204d

Browse files
syt123450BoTime
authored andcommitted
import dependencies (#189)
1 parent 63a6cd1 commit e88204d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+79
-3
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727
"@tweenjs/tween.js": "^17.2.0",
2828
"install": "^0.12.1",
2929
"npm": "^6.4.1",
30-
"three": "^0.98.0"
30+
"three": "^0.98.0",
31+
"stats.js": "^0.17.0",
32+
"three-trackballcontrols": "^0.0.7"
3133
},
3234
"devDependencies": {
3335
"all-contributors-cli": "^5.3.0",

src/animation/LayerTranslateTween.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
* @author syt123450 / https://github.com/syt123450
33
*/
44

5+
import * as TWEEN from '@tweenjs/tween.js';
6+
57
let LayerTranslateFactory = ( function() {
68

79
function translate( layer, targetCenter, translateTime ) {

src/animation/MapTransitionTween.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
* @author syt123450 / https://github.com/syt123450
33
*/
44

5+
import * as TWEEN from '@tweenjs/tween.js';
6+
57
let MapTransitionFactory = ( function() {
68

79
function openLayer( layer ) {

src/animation/OutputTransitionTween.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
* @author syt123450 / https://github.com/syt123450
33
*/
44

5+
import * as TWEEN from '@tweenjs/tween.js';
6+
57
let OutputTransitionFactory = ( function() {
68

79
function openLayer( layer ) {

src/animation/QueueGroupTransitionTween.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
* @author syt123450 / https://github.com/syt123450
33
*/
44

5+
import * as TWEEN from '@tweenjs/tween.js';
6+
57
let QueueGroupTweenFactory = ( function() {
68

79
function openLayer( layer ) {

src/animation/QueueTransitionTween.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* @author syt123450 / https://github.com/syt123450
33
*/
44

5+
import * as TWEEN from '@tweenjs/tween.js';
56
import { VariableLengthObject } from "../elements/VariableLengthObject";
67

78
let QueueTransitionFactory = ( function() {

src/animation/RGBChannelTween.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
* @author syt123450 / https://github.com/syt123450
33
*/
44

5+
import * as TWEEN from '@tweenjs/tween.js';
6+
57
let RGBTweenFactory = ( function() {
68

79
function separate( layer ) {

src/animation/YoloTransitionTween.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
* @author syt123450 / https://github.com/syt123450
33
*/
44

5+
import * as TWEEN from '@tweenjs/tween.js';
6+
57
let YoloTweenFactory = ( function() {
68

79
function openLayer( layer ) {

src/assets/fonts/TextFont.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/elements/BasicLineGroup.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
* @author syt123450 / https://github.com/syt123450
33
*/
44

5+
import * as THREE from "three";
6+
57
/**
68
* BasicLineGroupController, abstract layer, can not be initialized by TensorSpace user.
79
* Line group component for abstract layer "Layer"

0 commit comments

Comments
 (0)