├── .browserslistrc ├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ └── run-tests.js.yml ├── .gitignore ├── .vscode ├── cspell.json ├── launch.json └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── pic.png ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── base-component.ts │ │ ├── context-menu │ │ │ ├── context-menu.component.html │ │ │ ├── context-menu.component.scss │ │ │ └── context-menu.component.ts │ │ ├── dynamic-context-menu │ │ │ ├── dynamic-context-menu.component.html │ │ │ ├── dynamic-context-menu.component.scss │ │ │ ├── dynamic-context-menu.component.spec.ts │ │ │ └── dynamic-context-menu.component.ts │ │ ├── footer-toolbar │ │ │ ├── footer-toolbar.component.html │ │ │ ├── footer-toolbar.component.scss │ │ │ ├── footer-toolbar.component.ts │ │ │ └── mouse-tracker │ │ │ │ ├── mouse-tracker.component.html │ │ │ │ ├── mouse-tracker.component.scss │ │ │ │ ├── mouse-tracker.component.spec.ts │ │ │ │ └── mouse-tracker.component.ts │ │ ├── menu │ │ │ ├── history │ │ │ │ ├── history.component.html │ │ │ │ ├── history.component.scss │ │ │ │ ├── history.component.spec.ts │ │ │ │ └── history.component.ts │ │ │ ├── menu.component.html │ │ │ ├── menu.component.scss │ │ │ ├── menu.component.spec.ts │ │ │ └── menu.component.ts │ │ ├── outline │ │ │ ├── outline-node │ │ │ │ ├── outline-node.component.html │ │ │ │ ├── outline-node.component.scss │ │ │ │ ├── outline-node.component.spec.ts │ │ │ │ └── outline-node.component.ts │ │ │ └── outline │ │ │ │ ├── outline.component.html │ │ │ │ ├── outline.component.scss │ │ │ │ ├── outline.component.spec.ts │ │ │ │ └── outline.component.ts │ │ ├── output │ │ │ ├── output.component.html │ │ │ ├── output.component.scss │ │ │ ├── output.component.spec.ts │ │ │ └── output.component.ts │ │ ├── player │ │ │ ├── breadcrumb │ │ │ │ ├── breadcrumb-item.ts │ │ │ │ ├── breadcrumb-item │ │ │ │ │ ├── breadcrumb-item.component.html │ │ │ │ │ ├── breadcrumb-item.component.scss │ │ │ │ │ ├── breadcrumb-item.component.spec.ts │ │ │ │ │ └── breadcrumb-item.component.ts │ │ │ │ ├── breadcrumb.component.html │ │ │ │ ├── breadcrumb.component.scss │ │ │ │ ├── breadcrumb.component.spec.ts │ │ │ │ └── breadcrumb.component.ts │ │ │ ├── notification │ │ │ │ ├── notification.component.html │ │ │ │ ├── notification.component.scss │ │ │ │ ├── notification.component.spec.ts │ │ │ │ └── notification.component.ts │ │ │ ├── player-adorners │ │ │ │ ├── player-adorner │ │ │ │ │ ├── player-adorner.component.html │ │ │ │ │ ├── player-adorner.component.scss │ │ │ │ │ ├── player-adorner.component.spec.ts │ │ │ │ │ └── player-adorner.component.ts │ │ │ │ ├── player-adorners.component.html │ │ │ │ ├── player-adorners.component.scss │ │ │ │ ├── player-adorners.component.spec.ts │ │ │ │ └── player-adorners.component.ts │ │ │ ├── player-toolbar │ │ │ │ ├── player-toolbar.component.html │ │ │ │ ├── player-toolbar.component.scss │ │ │ │ ├── player-toolbar.component.spec.ts │ │ │ │ └── player-toolbar.component.ts │ │ │ ├── player.component.html │ │ │ ├── player.component.scss │ │ │ ├── player.component.spec.ts │ │ │ └── player.component.ts │ │ ├── properties │ │ │ ├── bool │ │ │ │ ├── bool.component.html │ │ │ │ ├── bool.component.scss │ │ │ │ ├── bool.component.spec.ts │ │ │ │ └── bool.component.ts │ │ │ ├── color │ │ │ │ ├── color.component.html │ │ │ │ ├── color.component.scss │ │ │ │ ├── color.component.spec.ts │ │ │ │ └── color.component.ts │ │ │ ├── combo │ │ │ │ ├── combo.component.html │ │ │ │ ├── combo.component.scss │ │ │ │ ├── combo.component.spec.ts │ │ │ │ └── combo.component.ts │ │ │ ├── dnumeric │ │ │ │ ├── dnumeric.component.html │ │ │ │ ├── dnumeric.component.scss │ │ │ │ ├── dnumeric.component.spec.ts │ │ │ │ └── dnumeric.component.ts │ │ │ ├── numeric │ │ │ │ ├── numeric.component.html │ │ │ │ ├── numeric.component.scss │ │ │ │ ├── numeric.component.spec.ts │ │ │ │ └── numeric.component.ts │ │ │ ├── path-data-editor │ │ │ │ ├── path-data-editor.component.html │ │ │ │ ├── path-data-editor.component.scss │ │ │ │ ├── path-data-editor.component.spec.ts │ │ │ │ └── path-data-editor.component.ts │ │ │ ├── properties.component.html │ │ │ ├── properties.component.scss │ │ │ ├── properties.component.spec.ts │ │ │ ├── properties.component.ts │ │ │ └── text │ │ │ │ ├── text.component.html │ │ │ │ ├── text.component.scss │ │ │ │ ├── text.component.spec.ts │ │ │ │ └── text.component.ts │ │ ├── timeline │ │ │ ├── timeline.component.html │ │ │ ├── timeline.component.scss │ │ │ ├── timeline.component.spec.ts │ │ │ └── timeline.component.ts │ │ └── toolbars │ │ │ ├── commands-list │ │ │ ├── commands-list.component.html │ │ │ ├── commands-list.component.scss │ │ │ ├── commands-list.component.spec.ts │ │ │ └── commands-list.component.ts │ │ │ ├── main-toolbar │ │ │ ├── main-toolbar.component.html │ │ │ ├── main-toolbar.component.scss │ │ │ ├── main-toolbar.component.spec.ts │ │ │ └── main-toolbar.component.ts │ │ │ ├── tool-commands │ │ │ ├── tool-commands.component.html │ │ │ ├── tool-commands.component.scss │ │ │ ├── tool-commands.component.spec.ts │ │ │ └── tool-commands.component.ts │ │ │ └── toolbox │ │ │ ├── toolbox.component.html │ │ │ ├── toolbox.component.scss │ │ │ ├── toolbox.component.spec.ts │ │ │ └── toolbox.component.ts │ ├── models │ │ ├── adorner-point-type.ts │ │ ├── adorner-type-utils..spec.ts │ │ ├── adorner-type-utils.ts │ │ ├── adorner-type.ts │ │ ├── adorner.ts │ │ ├── cursor-type.ts │ │ ├── decompose-matrix.ts │ │ ├── decompose-transform.spec.ts │ │ ├── handle-data.ts │ │ ├── input-document-type.ts │ │ ├── input-document.ts │ │ ├── interfaces │ │ │ ├── bbox.ts │ │ │ ├── ctm-provider.ts │ │ │ ├── initializer.ts │ │ │ ├── parser.ts │ │ │ └── player.ts │ │ ├── keyframes │ │ │ └── keyframe.ts │ │ ├── line.ts │ │ ├── mouse-event-args.ts │ │ ├── path-data-handle-type.ts │ │ ├── path-data-handle.ts │ │ ├── path-direct-selection-tool-mode.ts │ │ ├── path │ │ │ ├── path-data-command.ts │ │ │ ├── path-data-converter.ts │ │ │ ├── path-data.spec.ts │ │ │ ├── path-data.ts │ │ │ ├── path-type.ts │ │ │ └── svg-path-segment-ex.ts │ │ ├── properties │ │ │ ├── bool-property.ts │ │ │ ├── color-property.ts │ │ │ ├── combo-property.ts │ │ │ ├── dnumber-property.ts │ │ │ ├── number-property.ts │ │ │ ├── properties.ts │ │ │ ├── property-data-type.ts │ │ │ ├── property-type.ts │ │ │ ├── property.ts │ │ │ └── text-property.ts │ │ ├── recent-item.ts │ │ ├── timedata.ts │ │ ├── transformation-mode.ts │ │ ├── tree-node.ts │ │ ├── tree.control.ts │ │ └── view-mode.ts │ └── services │ │ ├── actions │ │ ├── actions-factory.spec.ts │ │ ├── actions-factory.ts │ │ ├── add-element-action.ts │ │ ├── base-action.ts │ │ ├── base-property-action.ts │ │ ├── document-loaded-action.ts │ │ ├── group-actions │ │ │ ├── group-action.ts │ │ │ └── group-mode.ts │ │ ├── order-actions │ │ │ ├── order-action.ts │ │ │ └── order-mode.ts │ │ ├── paste-action.ts │ │ ├── path-actions │ │ │ ├── add-path-nodes-action.ts │ │ │ ├── remove-path-nodes-action-segments.spec.ts │ │ │ ├── remove-path-nodes-action.spec.ts │ │ │ ├── remove-path-nodes-action.ts │ │ │ └── smooth-path-nodes-action.ts │ │ ├── remove-element-action.ts │ │ ├── transformations │ │ │ ├── actions-mapping.ts │ │ │ ├── base-transform-action.ts │ │ │ ├── rotate │ │ │ │ ├── matrix-rotate-action.ts │ │ │ │ └── path-rotate-action.ts │ │ │ ├── scale │ │ │ │ ├── center-selection-scale-action.ts │ │ │ │ ├── circle-scale-action.ts │ │ │ │ ├── ellipse-scale-action.ts │ │ │ │ ├── matrix-scale-action.ts │ │ │ │ ├── path-scale-action.ts │ │ │ │ └── rect-scale-action.ts │ │ │ ├── skew │ │ │ │ └── matrix-skew-action.ts │ │ │ ├── transform-action.ts │ │ │ └── translate │ │ │ │ ├── center-element-translate-action.ts │ │ │ │ ├── center-selection-translate-action.ts │ │ │ │ ├── circle-translate-action.ts │ │ │ │ ├── ellipse-translate-action.ts │ │ │ │ ├── matrix-translate-action.ts │ │ │ │ ├── path-translate-action.ts │ │ │ │ ├── rect-translate-action.ts │ │ │ │ └── text-translate-action.ts │ │ └── visibility-action.ts │ │ ├── adorners-service.ts │ │ ├── app-factory.ts │ │ ├── assets.service.spec.ts │ │ ├── assets.service.ts │ │ ├── commands │ │ ├── Readme.md │ │ ├── base-command.ts │ │ ├── bbox-mode-command.ts │ │ ├── collapse-all-command.ts │ │ ├── commands-services │ │ │ ├── commands-executor-service.ts │ │ │ ├── commands-service.ts │ │ │ ├── context-menu-commands-service.ts │ │ │ ├── outline-commands-service.ts │ │ │ └── tools-commands-service.ts │ │ ├── copy-command.ts │ │ ├── cut-command.ts │ │ ├── expand-all-command.ts │ │ ├── group-commands │ │ │ ├── group-command.ts │ │ │ └── ungroup-command.ts │ │ ├── label-command.ts │ │ ├── order-commands │ │ │ ├── bring-to-front-command.ts │ │ │ ├── order-group-command.ts │ │ │ ├── send-to-bottom-command.ts │ │ │ ├── step-backward-command.ts │ │ │ └── step-forward-command.ts │ │ ├── paste-command.ts │ │ ├── path-commands │ │ │ ├── path-mode-commands │ │ │ │ ├── add-path-nodes-mode-command.ts │ │ │ │ ├── base-path-node-mode-command.ts │ │ │ │ ├── erase-path-nodes-mode-command.ts │ │ │ │ └── select-path-nodes-mode-command.ts │ │ │ ├── remove-path-nodes-command.ts │ │ │ └── smooth-path-nodes-command.ts │ │ ├── redo-command.ts │ │ ├── remove-element-command.ts │ │ ├── remove-selected-command.ts │ │ ├── scroll-to-selected.ts │ │ ├── selection-commands │ │ │ ├── select-all-command.ts │ │ │ ├── select-all-groups-command.ts │ │ │ ├── select-group-command.ts │ │ │ ├── select-inverse-command.ts │ │ │ ├── select-none-command.ts │ │ │ └── select-same-type-command.ts │ │ ├── separator-command.ts │ │ ├── undo-command.ts │ │ ├── untransform-command.ts │ │ ├── view-commands │ │ │ └── wireframe-command.ts │ │ └── visibility-command.ts │ │ ├── config-service.ts │ │ ├── context-menu.service.spec.ts │ │ ├── context-menu.service.ts │ │ ├── cursor.service.ts │ │ ├── document.service.ts │ │ ├── hotkeys.service.spec.ts │ │ ├── hotkeys.service.ts │ │ ├── intersection.service.ts │ │ ├── logger.service.ts │ │ ├── menu-service.ts │ │ ├── mouse-over.service.ts │ │ ├── notification.service.spec.ts │ │ ├── notification.service.ts │ │ ├── outline.service.ts │ │ ├── paste.service.ts │ │ ├── path-data-subject.ts │ │ ├── player.service.ts │ │ ├── properties.service.ts │ │ ├── renderers │ │ ├── adorners.renderer.ts │ │ ├── base.renderer.ts │ │ ├── bounds.renderer.ts │ │ ├── grid-lines.renderer.ts │ │ ├── mouse-over.renderer.ts │ │ ├── path.renderer.ts │ │ └── selector.renderer.ts │ │ ├── selection.service.spec.ts │ │ ├── selection.service.ts │ │ ├── shapes-repository-service.ts │ │ ├── state-subject.ts │ │ ├── svg │ │ ├── svg-element-type.ts │ │ ├── svg-initializer.ts │ │ ├── svg-player.ts │ │ ├── svg-properties.ts │ │ └── svg-tree.parser.ts │ │ ├── tools │ │ ├── auto-pan-service.ts │ │ ├── base.tool.ts │ │ ├── pan.tool.ts │ │ ├── path-direct-selection.tool.ts │ │ ├── path.tool.ts │ │ ├── ruler.tool.ts │ │ ├── scrollbars-pan.tool.ts │ │ ├── selection-rect-tracker.ts │ │ ├── selection.tool.ts │ │ ├── shape.tool.ts │ │ ├── tools.service.ts │ │ ├── transforms.service.ts │ │ └── zoom.tool.ts │ │ ├── undo.service.spec.ts │ │ ├── undo.service.ts │ │ ├── utils │ │ ├── matrix-utils.ts │ │ ├── path-data-utils.ts │ │ ├── path-utils │ │ │ ├── arc-functions.ts │ │ │ ├── bezier-functions.ts │ │ │ ├── bezier-values.ts │ │ │ └── point-on-path.ts │ │ ├── utils.spec.ts │ │ └── utils.ts │ │ ├── view.service.ts │ │ └── wire.service.ts ├── assets │ ├── .gitkeep │ ├── documents │ │ └── default.svg │ ├── highlight │ │ ├── README.md │ │ ├── highlight.pack.js │ │ └── styles │ │ │ └── androidstudio.css │ ├── icons │ │ ├── add-black-18dp.svg │ │ ├── break-path-data-node.svg │ │ ├── clear-black-18dp.svg │ │ ├── connect-segments.svg │ │ ├── crop_16_9-black-18dp-transformed.svg │ │ ├── crop_16_9-black-18dp.svg │ │ ├── crop_square.svg │ │ ├── erase.svg │ │ ├── ink_pen.svg │ │ ├── ink_pen1.svg │ │ ├── line-node.svg │ │ ├── merge-segments.svg │ │ ├── navigation.svg │ │ ├── navigation_outline.svg │ │ ├── pan_tool.svg │ │ ├── remove-segments.svg │ │ ├── rotate.svg │ │ ├── search.svg │ │ ├── share-black-18dp.svg │ │ ├── smooth-path.svg │ │ ├── symmetrical-handle.svg │ │ └── unsymmetrical-handle.svg │ └── images │ │ ├── rotate_bc.png │ │ ├── rotate_bl.png │ │ ├── rotate_br.png │ │ ├── rotate_lc.png │ │ ├── rotate_rc.png │ │ ├── rotate_tc.png │ │ ├── rotate_tl.png │ │ └── rotate_tr.png ├── environments │ ├── consts.ts │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts └── variables.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/run-tests.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/.github/workflows/run-tests.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/.vscode/cspell.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/package.json -------------------------------------------------------------------------------- /pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/pic.png -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/base-component.ts -------------------------------------------------------------------------------- /src/app/components/context-menu/context-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/context-menu/context-menu.component.html -------------------------------------------------------------------------------- /src/app/components/context-menu/context-menu.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/context-menu/context-menu.component.scss -------------------------------------------------------------------------------- /src/app/components/context-menu/context-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/context-menu/context-menu.component.ts -------------------------------------------------------------------------------- /src/app/components/dynamic-context-menu/dynamic-context-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/dynamic-context-menu/dynamic-context-menu.component.html -------------------------------------------------------------------------------- /src/app/components/dynamic-context-menu/dynamic-context-menu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dynamic-context-menu/dynamic-context-menu.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/dynamic-context-menu/dynamic-context-menu.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dynamic-context-menu/dynamic-context-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/dynamic-context-menu/dynamic-context-menu.component.ts -------------------------------------------------------------------------------- /src/app/components/footer-toolbar/footer-toolbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/footer-toolbar/footer-toolbar.component.html -------------------------------------------------------------------------------- /src/app/components/footer-toolbar/footer-toolbar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/footer-toolbar/footer-toolbar.component.scss -------------------------------------------------------------------------------- /src/app/components/footer-toolbar/footer-toolbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/footer-toolbar/footer-toolbar.component.ts -------------------------------------------------------------------------------- /src/app/components/footer-toolbar/mouse-tracker/mouse-tracker.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/footer-toolbar/mouse-tracker/mouse-tracker.component.html -------------------------------------------------------------------------------- /src/app/components/footer-toolbar/mouse-tracker/mouse-tracker.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/footer-toolbar/mouse-tracker/mouse-tracker.component.scss -------------------------------------------------------------------------------- /src/app/components/footer-toolbar/mouse-tracker/mouse-tracker.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/footer-toolbar/mouse-tracker/mouse-tracker.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/footer-toolbar/mouse-tracker/mouse-tracker.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/footer-toolbar/mouse-tracker/mouse-tracker.component.ts -------------------------------------------------------------------------------- /src/app/components/menu/history/history.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/menu/history/history.component.html -------------------------------------------------------------------------------- /src/app/components/menu/history/history.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/menu/history/history.component.scss -------------------------------------------------------------------------------- /src/app/components/menu/history/history.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/menu/history/history.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/menu/history/history.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/menu/history/history.component.ts -------------------------------------------------------------------------------- /src/app/components/menu/menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/menu/menu.component.html -------------------------------------------------------------------------------- /src/app/components/menu/menu.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/menu/menu.component.scss -------------------------------------------------------------------------------- /src/app/components/menu/menu.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/menu/menu.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/menu/menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/menu/menu.component.ts -------------------------------------------------------------------------------- /src/app/components/outline/outline-node/outline-node.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/outline/outline-node/outline-node.component.html -------------------------------------------------------------------------------- /src/app/components/outline/outline-node/outline-node.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/outline/outline-node/outline-node.component.scss -------------------------------------------------------------------------------- /src/app/components/outline/outline-node/outline-node.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/outline/outline-node/outline-node.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/outline/outline-node/outline-node.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/outline/outline-node/outline-node.component.ts -------------------------------------------------------------------------------- /src/app/components/outline/outline/outline.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/outline/outline/outline.component.html -------------------------------------------------------------------------------- /src/app/components/outline/outline/outline.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/outline/outline/outline.component.scss -------------------------------------------------------------------------------- /src/app/components/outline/outline/outline.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/outline/outline/outline.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/outline/outline/outline.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/outline/outline/outline.component.ts -------------------------------------------------------------------------------- /src/app/components/output/output.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/output/output.component.html -------------------------------------------------------------------------------- /src/app/components/output/output.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/output/output.component.scss -------------------------------------------------------------------------------- /src/app/components/output/output.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/output/output.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/output/output.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/output/output.component.ts -------------------------------------------------------------------------------- /src/app/components/player/breadcrumb/breadcrumb-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/breadcrumb/breadcrumb-item.ts -------------------------------------------------------------------------------- /src/app/components/player/breadcrumb/breadcrumb-item/breadcrumb-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/breadcrumb/breadcrumb-item/breadcrumb-item.component.html -------------------------------------------------------------------------------- /src/app/components/player/breadcrumb/breadcrumb-item/breadcrumb-item.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/breadcrumb/breadcrumb-item/breadcrumb-item.component.scss -------------------------------------------------------------------------------- /src/app/components/player/breadcrumb/breadcrumb-item/breadcrumb-item.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/breadcrumb/breadcrumb-item/breadcrumb-item.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/player/breadcrumb/breadcrumb-item/breadcrumb-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/breadcrumb/breadcrumb-item/breadcrumb-item.component.ts -------------------------------------------------------------------------------- /src/app/components/player/breadcrumb/breadcrumb.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/breadcrumb/breadcrumb.component.html -------------------------------------------------------------------------------- /src/app/components/player/breadcrumb/breadcrumb.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/breadcrumb/breadcrumb.component.scss -------------------------------------------------------------------------------- /src/app/components/player/breadcrumb/breadcrumb.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/breadcrumb/breadcrumb.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/player/breadcrumb/breadcrumb.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/breadcrumb/breadcrumb.component.ts -------------------------------------------------------------------------------- /src/app/components/player/notification/notification.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/notification/notification.component.html -------------------------------------------------------------------------------- /src/app/components/player/notification/notification.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/notification/notification.component.scss -------------------------------------------------------------------------------- /src/app/components/player/notification/notification.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/notification/notification.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/player/notification/notification.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/notification/notification.component.ts -------------------------------------------------------------------------------- /src/app/components/player/player-adorners/player-adorner/player-adorner.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player-adorners/player-adorner/player-adorner.component.html -------------------------------------------------------------------------------- /src/app/components/player/player-adorners/player-adorner/player-adorner.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player-adorners/player-adorner/player-adorner.component.scss -------------------------------------------------------------------------------- /src/app/components/player/player-adorners/player-adorner/player-adorner.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player-adorners/player-adorner/player-adorner.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/player/player-adorners/player-adorner/player-adorner.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player-adorners/player-adorner/player-adorner.component.ts -------------------------------------------------------------------------------- /src/app/components/player/player-adorners/player-adorners.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player-adorners/player-adorners.component.html -------------------------------------------------------------------------------- /src/app/components/player/player-adorners/player-adorners.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player-adorners/player-adorners.component.scss -------------------------------------------------------------------------------- /src/app/components/player/player-adorners/player-adorners.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player-adorners/player-adorners.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/player/player-adorners/player-adorners.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player-adorners/player-adorners.component.ts -------------------------------------------------------------------------------- /src/app/components/player/player-toolbar/player-toolbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player-toolbar/player-toolbar.component.html -------------------------------------------------------------------------------- /src/app/components/player/player-toolbar/player-toolbar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player-toolbar/player-toolbar.component.scss -------------------------------------------------------------------------------- /src/app/components/player/player-toolbar/player-toolbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player-toolbar/player-toolbar.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/player/player-toolbar/player-toolbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player-toolbar/player-toolbar.component.ts -------------------------------------------------------------------------------- /src/app/components/player/player.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player.component.html -------------------------------------------------------------------------------- /src/app/components/player/player.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player.component.scss -------------------------------------------------------------------------------- /src/app/components/player/player.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/player/player.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/player/player.component.ts -------------------------------------------------------------------------------- /src/app/components/properties/bool/bool.component.html: -------------------------------------------------------------------------------- 1 |

bool works!

2 | -------------------------------------------------------------------------------- /src/app/components/properties/bool/bool.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/properties/bool/bool.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/bool/bool.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/properties/bool/bool.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/bool/bool.component.ts -------------------------------------------------------------------------------- /src/app/components/properties/color/color.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/color/color.component.html -------------------------------------------------------------------------------- /src/app/components/properties/color/color.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/color/color.component.scss -------------------------------------------------------------------------------- /src/app/components/properties/color/color.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/color/color.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/properties/color/color.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/color/color.component.ts -------------------------------------------------------------------------------- /src/app/components/properties/combo/combo.component.html: -------------------------------------------------------------------------------- 1 |

combo works!

2 | -------------------------------------------------------------------------------- /src/app/components/properties/combo/combo.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/properties/combo/combo.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/combo/combo.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/properties/combo/combo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/combo/combo.component.ts -------------------------------------------------------------------------------- /src/app/components/properties/dnumeric/dnumeric.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/dnumeric/dnumeric.component.html -------------------------------------------------------------------------------- /src/app/components/properties/dnumeric/dnumeric.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/dnumeric/dnumeric.component.scss -------------------------------------------------------------------------------- /src/app/components/properties/dnumeric/dnumeric.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/dnumeric/dnumeric.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/properties/dnumeric/dnumeric.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/dnumeric/dnumeric.component.ts -------------------------------------------------------------------------------- /src/app/components/properties/numeric/numeric.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/numeric/numeric.component.html -------------------------------------------------------------------------------- /src/app/components/properties/numeric/numeric.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/numeric/numeric.component.scss -------------------------------------------------------------------------------- /src/app/components/properties/numeric/numeric.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/numeric/numeric.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/properties/numeric/numeric.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/numeric/numeric.component.ts -------------------------------------------------------------------------------- /src/app/components/properties/path-data-editor/path-data-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/path-data-editor/path-data-editor.component.html -------------------------------------------------------------------------------- /src/app/components/properties/path-data-editor/path-data-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/path-data-editor/path-data-editor.component.scss -------------------------------------------------------------------------------- /src/app/components/properties/path-data-editor/path-data-editor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/path-data-editor/path-data-editor.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/properties/path-data-editor/path-data-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/path-data-editor/path-data-editor.component.ts -------------------------------------------------------------------------------- /src/app/components/properties/properties.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/properties.component.html -------------------------------------------------------------------------------- /src/app/components/properties/properties.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/properties.component.scss -------------------------------------------------------------------------------- /src/app/components/properties/properties.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/properties.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/properties/properties.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/properties.component.ts -------------------------------------------------------------------------------- /src/app/components/properties/text/text.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/text/text.component.html -------------------------------------------------------------------------------- /src/app/components/properties/text/text.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/text/text.component.scss -------------------------------------------------------------------------------- /src/app/components/properties/text/text.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/text/text.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/properties/text/text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/properties/text/text.component.ts -------------------------------------------------------------------------------- /src/app/components/timeline/timeline.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/timeline/timeline.component.html -------------------------------------------------------------------------------- /src/app/components/timeline/timeline.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/timeline/timeline.component.scss -------------------------------------------------------------------------------- /src/app/components/timeline/timeline.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/timeline/timeline.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/timeline/timeline.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/timeline/timeline.component.ts -------------------------------------------------------------------------------- /src/app/components/toolbars/commands-list/commands-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/commands-list/commands-list.component.html -------------------------------------------------------------------------------- /src/app/components/toolbars/commands-list/commands-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/commands-list/commands-list.component.scss -------------------------------------------------------------------------------- /src/app/components/toolbars/commands-list/commands-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/commands-list/commands-list.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/toolbars/commands-list/commands-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/commands-list/commands-list.component.ts -------------------------------------------------------------------------------- /src/app/components/toolbars/main-toolbar/main-toolbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/main-toolbar/main-toolbar.component.html -------------------------------------------------------------------------------- /src/app/components/toolbars/main-toolbar/main-toolbar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/main-toolbar/main-toolbar.component.scss -------------------------------------------------------------------------------- /src/app/components/toolbars/main-toolbar/main-toolbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/main-toolbar/main-toolbar.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/toolbars/main-toolbar/main-toolbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/main-toolbar/main-toolbar.component.ts -------------------------------------------------------------------------------- /src/app/components/toolbars/tool-commands/tool-commands.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/tool-commands/tool-commands.component.html -------------------------------------------------------------------------------- /src/app/components/toolbars/tool-commands/tool-commands.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/tool-commands/tool-commands.component.scss -------------------------------------------------------------------------------- /src/app/components/toolbars/tool-commands/tool-commands.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/tool-commands/tool-commands.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/toolbars/tool-commands/tool-commands.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/tool-commands/tool-commands.component.ts -------------------------------------------------------------------------------- /src/app/components/toolbars/toolbox/toolbox.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/toolbox/toolbox.component.html -------------------------------------------------------------------------------- /src/app/components/toolbars/toolbox/toolbox.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/toolbox/toolbox.component.scss -------------------------------------------------------------------------------- /src/app/components/toolbars/toolbox/toolbox.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/toolbox/toolbox.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/toolbars/toolbox/toolbox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/components/toolbars/toolbox/toolbox.component.ts -------------------------------------------------------------------------------- /src/app/models/adorner-point-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/adorner-point-type.ts -------------------------------------------------------------------------------- /src/app/models/adorner-type-utils..spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/adorner-type-utils..spec.ts -------------------------------------------------------------------------------- /src/app/models/adorner-type-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/adorner-type-utils.ts -------------------------------------------------------------------------------- /src/app/models/adorner-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/adorner-type.ts -------------------------------------------------------------------------------- /src/app/models/adorner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/adorner.ts -------------------------------------------------------------------------------- /src/app/models/cursor-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/cursor-type.ts -------------------------------------------------------------------------------- /src/app/models/decompose-matrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/decompose-matrix.ts -------------------------------------------------------------------------------- /src/app/models/decompose-transform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/decompose-transform.spec.ts -------------------------------------------------------------------------------- /src/app/models/handle-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/handle-data.ts -------------------------------------------------------------------------------- /src/app/models/input-document-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/input-document-type.ts -------------------------------------------------------------------------------- /src/app/models/input-document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/input-document.ts -------------------------------------------------------------------------------- /src/app/models/interfaces/bbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/interfaces/bbox.ts -------------------------------------------------------------------------------- /src/app/models/interfaces/ctm-provider.ts: -------------------------------------------------------------------------------- 1 | export interface ICTMProvider { 2 | getScreenCTM(): DOMMatrix | null; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/models/interfaces/initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/interfaces/initializer.ts -------------------------------------------------------------------------------- /src/app/models/interfaces/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/interfaces/parser.ts -------------------------------------------------------------------------------- /src/app/models/interfaces/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/interfaces/player.ts -------------------------------------------------------------------------------- /src/app/models/keyframes/keyframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/keyframes/keyframe.ts -------------------------------------------------------------------------------- /src/app/models/line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/line.ts -------------------------------------------------------------------------------- /src/app/models/mouse-event-args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/mouse-event-args.ts -------------------------------------------------------------------------------- /src/app/models/path-data-handle-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/path-data-handle-type.ts -------------------------------------------------------------------------------- /src/app/models/path-data-handle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/path-data-handle.ts -------------------------------------------------------------------------------- /src/app/models/path-direct-selection-tool-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/path-direct-selection-tool-mode.ts -------------------------------------------------------------------------------- /src/app/models/path/path-data-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/path/path-data-command.ts -------------------------------------------------------------------------------- /src/app/models/path/path-data-converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/path/path-data-converter.ts -------------------------------------------------------------------------------- /src/app/models/path/path-data.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/path/path-data.spec.ts -------------------------------------------------------------------------------- /src/app/models/path/path-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/path/path-data.ts -------------------------------------------------------------------------------- /src/app/models/path/path-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/path/path-type.ts -------------------------------------------------------------------------------- /src/app/models/path/svg-path-segment-ex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/path/svg-path-segment-ex.ts -------------------------------------------------------------------------------- /src/app/models/properties/bool-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/properties/bool-property.ts -------------------------------------------------------------------------------- /src/app/models/properties/color-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/properties/color-property.ts -------------------------------------------------------------------------------- /src/app/models/properties/combo-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/properties/combo-property.ts -------------------------------------------------------------------------------- /src/app/models/properties/dnumber-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/properties/dnumber-property.ts -------------------------------------------------------------------------------- /src/app/models/properties/number-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/properties/number-property.ts -------------------------------------------------------------------------------- /src/app/models/properties/properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/properties/properties.ts -------------------------------------------------------------------------------- /src/app/models/properties/property-data-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/properties/property-data-type.ts -------------------------------------------------------------------------------- /src/app/models/properties/property-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/properties/property-type.ts -------------------------------------------------------------------------------- /src/app/models/properties/property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/properties/property.ts -------------------------------------------------------------------------------- /src/app/models/properties/text-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/properties/text-property.ts -------------------------------------------------------------------------------- /src/app/models/recent-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/recent-item.ts -------------------------------------------------------------------------------- /src/app/models/timedata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/timedata.ts -------------------------------------------------------------------------------- /src/app/models/transformation-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/transformation-mode.ts -------------------------------------------------------------------------------- /src/app/models/tree-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/tree-node.ts -------------------------------------------------------------------------------- /src/app/models/tree.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/tree.control.ts -------------------------------------------------------------------------------- /src/app/models/view-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/models/view-mode.ts -------------------------------------------------------------------------------- /src/app/services/actions/actions-factory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/actions-factory.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/actions-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/actions-factory.ts -------------------------------------------------------------------------------- /src/app/services/actions/add-element-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/add-element-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/base-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/base-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/base-property-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/base-property-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/document-loaded-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/document-loaded-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/group-actions/group-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/group-actions/group-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/group-actions/group-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/group-actions/group-mode.ts -------------------------------------------------------------------------------- /src/app/services/actions/order-actions/order-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/order-actions/order-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/order-actions/order-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/order-actions/order-mode.ts -------------------------------------------------------------------------------- /src/app/services/actions/paste-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/paste-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/path-actions/add-path-nodes-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/path-actions/add-path-nodes-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/path-actions/remove-path-nodes-action-segments.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/path-actions/remove-path-nodes-action-segments.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/path-actions/remove-path-nodes-action.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/path-actions/remove-path-nodes-action.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/path-actions/remove-path-nodes-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/path-actions/remove-path-nodes-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/path-actions/smooth-path-nodes-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/path-actions/smooth-path-nodes-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/remove-element-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/remove-element-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/actions-mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/actions-mapping.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/base-transform-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/base-transform-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/rotate/matrix-rotate-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/rotate/matrix-rotate-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/rotate/path-rotate-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/rotate/path-rotate-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/scale/center-selection-scale-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/scale/center-selection-scale-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/scale/circle-scale-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/scale/circle-scale-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/scale/ellipse-scale-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/scale/ellipse-scale-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/scale/matrix-scale-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/scale/matrix-scale-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/scale/path-scale-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/scale/path-scale-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/scale/rect-scale-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/scale/rect-scale-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/skew/matrix-skew-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/skew/matrix-skew-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/transform-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/transform-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/translate/center-element-translate-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/translate/center-element-translate-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/translate/center-selection-translate-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/translate/center-selection-translate-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/translate/circle-translate-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/translate/circle-translate-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/translate/ellipse-translate-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/translate/ellipse-translate-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/translate/matrix-translate-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/translate/matrix-translate-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/translate/path-translate-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/translate/path-translate-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/translate/rect-translate-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/translate/rect-translate-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/transformations/translate/text-translate-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/transformations/translate/text-translate-action.ts -------------------------------------------------------------------------------- /src/app/services/actions/visibility-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/actions/visibility-action.ts -------------------------------------------------------------------------------- /src/app/services/adorners-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/adorners-service.ts -------------------------------------------------------------------------------- /src/app/services/app-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/app-factory.ts -------------------------------------------------------------------------------- /src/app/services/assets.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/assets.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/assets.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/assets.service.ts -------------------------------------------------------------------------------- /src/app/services/commands/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/Readme.md -------------------------------------------------------------------------------- /src/app/services/commands/base-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/base-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/bbox-mode-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/bbox-mode-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/collapse-all-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/collapse-all-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/commands-services/commands-executor-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/commands-services/commands-executor-service.ts -------------------------------------------------------------------------------- /src/app/services/commands/commands-services/commands-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/commands-services/commands-service.ts -------------------------------------------------------------------------------- /src/app/services/commands/commands-services/context-menu-commands-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/commands-services/context-menu-commands-service.ts -------------------------------------------------------------------------------- /src/app/services/commands/commands-services/outline-commands-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/commands-services/outline-commands-service.ts -------------------------------------------------------------------------------- /src/app/services/commands/commands-services/tools-commands-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/commands-services/tools-commands-service.ts -------------------------------------------------------------------------------- /src/app/services/commands/copy-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/copy-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/cut-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/cut-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/expand-all-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/expand-all-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/group-commands/group-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/group-commands/group-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/group-commands/ungroup-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/group-commands/ungroup-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/label-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/label-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/order-commands/bring-to-front-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/order-commands/bring-to-front-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/order-commands/order-group-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/order-commands/order-group-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/order-commands/send-to-bottom-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/order-commands/send-to-bottom-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/order-commands/step-backward-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/order-commands/step-backward-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/order-commands/step-forward-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/order-commands/step-forward-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/paste-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/paste-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/path-commands/path-mode-commands/add-path-nodes-mode-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/path-commands/path-mode-commands/add-path-nodes-mode-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/path-commands/path-mode-commands/base-path-node-mode-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/path-commands/path-mode-commands/base-path-node-mode-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/path-commands/path-mode-commands/erase-path-nodes-mode-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/path-commands/path-mode-commands/erase-path-nodes-mode-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/path-commands/path-mode-commands/select-path-nodes-mode-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/path-commands/path-mode-commands/select-path-nodes-mode-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/path-commands/remove-path-nodes-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/path-commands/remove-path-nodes-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/path-commands/smooth-path-nodes-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/path-commands/smooth-path-nodes-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/redo-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/redo-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/remove-element-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/remove-element-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/remove-selected-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/remove-selected-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/scroll-to-selected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/scroll-to-selected.ts -------------------------------------------------------------------------------- /src/app/services/commands/selection-commands/select-all-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/selection-commands/select-all-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/selection-commands/select-all-groups-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/selection-commands/select-all-groups-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/selection-commands/select-group-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/selection-commands/select-group-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/selection-commands/select-inverse-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/selection-commands/select-inverse-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/selection-commands/select-none-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/selection-commands/select-none-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/selection-commands/select-same-type-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/selection-commands/select-same-type-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/separator-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/separator-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/undo-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/undo-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/untransform-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/untransform-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/view-commands/wireframe-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/view-commands/wireframe-command.ts -------------------------------------------------------------------------------- /src/app/services/commands/visibility-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/commands/visibility-command.ts -------------------------------------------------------------------------------- /src/app/services/config-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/config-service.ts -------------------------------------------------------------------------------- /src/app/services/context-menu.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/context-menu.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/context-menu.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/context-menu.service.ts -------------------------------------------------------------------------------- /src/app/services/cursor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/cursor.service.ts -------------------------------------------------------------------------------- /src/app/services/document.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/document.service.ts -------------------------------------------------------------------------------- /src/app/services/hotkeys.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/hotkeys.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/hotkeys.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/hotkeys.service.ts -------------------------------------------------------------------------------- /src/app/services/intersection.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/intersection.service.ts -------------------------------------------------------------------------------- /src/app/services/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/logger.service.ts -------------------------------------------------------------------------------- /src/app/services/menu-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/menu-service.ts -------------------------------------------------------------------------------- /src/app/services/mouse-over.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/mouse-over.service.ts -------------------------------------------------------------------------------- /src/app/services/notification.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/notification.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/notification.service.ts -------------------------------------------------------------------------------- /src/app/services/outline.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/outline.service.ts -------------------------------------------------------------------------------- /src/app/services/paste.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/paste.service.ts -------------------------------------------------------------------------------- /src/app/services/path-data-subject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/path-data-subject.ts -------------------------------------------------------------------------------- /src/app/services/player.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/player.service.ts -------------------------------------------------------------------------------- /src/app/services/properties.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/properties.service.ts -------------------------------------------------------------------------------- /src/app/services/renderers/adorners.renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/renderers/adorners.renderer.ts -------------------------------------------------------------------------------- /src/app/services/renderers/base.renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/renderers/base.renderer.ts -------------------------------------------------------------------------------- /src/app/services/renderers/bounds.renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/renderers/bounds.renderer.ts -------------------------------------------------------------------------------- /src/app/services/renderers/grid-lines.renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/renderers/grid-lines.renderer.ts -------------------------------------------------------------------------------- /src/app/services/renderers/mouse-over.renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/renderers/mouse-over.renderer.ts -------------------------------------------------------------------------------- /src/app/services/renderers/path.renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/renderers/path.renderer.ts -------------------------------------------------------------------------------- /src/app/services/renderers/selector.renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/renderers/selector.renderer.ts -------------------------------------------------------------------------------- /src/app/services/selection.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/selection.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/selection.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/selection.service.ts -------------------------------------------------------------------------------- /src/app/services/shapes-repository-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/shapes-repository-service.ts -------------------------------------------------------------------------------- /src/app/services/state-subject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/state-subject.ts -------------------------------------------------------------------------------- /src/app/services/svg/svg-element-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/svg/svg-element-type.ts -------------------------------------------------------------------------------- /src/app/services/svg/svg-initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/svg/svg-initializer.ts -------------------------------------------------------------------------------- /src/app/services/svg/svg-player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/svg/svg-player.ts -------------------------------------------------------------------------------- /src/app/services/svg/svg-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/svg/svg-properties.ts -------------------------------------------------------------------------------- /src/app/services/svg/svg-tree.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/svg/svg-tree.parser.ts -------------------------------------------------------------------------------- /src/app/services/tools/auto-pan-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/auto-pan-service.ts -------------------------------------------------------------------------------- /src/app/services/tools/base.tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/base.tool.ts -------------------------------------------------------------------------------- /src/app/services/tools/pan.tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/pan.tool.ts -------------------------------------------------------------------------------- /src/app/services/tools/path-direct-selection.tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/path-direct-selection.tool.ts -------------------------------------------------------------------------------- /src/app/services/tools/path.tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/path.tool.ts -------------------------------------------------------------------------------- /src/app/services/tools/ruler.tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/ruler.tool.ts -------------------------------------------------------------------------------- /src/app/services/tools/scrollbars-pan.tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/scrollbars-pan.tool.ts -------------------------------------------------------------------------------- /src/app/services/tools/selection-rect-tracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/selection-rect-tracker.ts -------------------------------------------------------------------------------- /src/app/services/tools/selection.tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/selection.tool.ts -------------------------------------------------------------------------------- /src/app/services/tools/shape.tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/shape.tool.ts -------------------------------------------------------------------------------- /src/app/services/tools/tools.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/tools.service.ts -------------------------------------------------------------------------------- /src/app/services/tools/transforms.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/transforms.service.ts -------------------------------------------------------------------------------- /src/app/services/tools/zoom.tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/tools/zoom.tool.ts -------------------------------------------------------------------------------- /src/app/services/undo.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/undo.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/undo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/undo.service.ts -------------------------------------------------------------------------------- /src/app/services/utils/matrix-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/utils/matrix-utils.ts -------------------------------------------------------------------------------- /src/app/services/utils/path-data-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/utils/path-data-utils.ts -------------------------------------------------------------------------------- /src/app/services/utils/path-utils/arc-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/utils/path-utils/arc-functions.ts -------------------------------------------------------------------------------- /src/app/services/utils/path-utils/bezier-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/utils/path-utils/bezier-functions.ts -------------------------------------------------------------------------------- /src/app/services/utils/path-utils/bezier-values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/utils/path-utils/bezier-values.ts -------------------------------------------------------------------------------- /src/app/services/utils/path-utils/point-on-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/utils/path-utils/point-on-path.ts -------------------------------------------------------------------------------- /src/app/services/utils/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/utils/utils.spec.ts -------------------------------------------------------------------------------- /src/app/services/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/utils/utils.ts -------------------------------------------------------------------------------- /src/app/services/view.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/view.service.ts -------------------------------------------------------------------------------- /src/app/services/wire.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/app/services/wire.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/documents/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/documents/default.svg -------------------------------------------------------------------------------- /src/assets/highlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/highlight/README.md -------------------------------------------------------------------------------- /src/assets/highlight/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/highlight/highlight.pack.js -------------------------------------------------------------------------------- /src/assets/highlight/styles/androidstudio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/highlight/styles/androidstudio.css -------------------------------------------------------------------------------- /src/assets/icons/add-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/add-black-18dp.svg -------------------------------------------------------------------------------- /src/assets/icons/break-path-data-node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/break-path-data-node.svg -------------------------------------------------------------------------------- /src/assets/icons/clear-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/clear-black-18dp.svg -------------------------------------------------------------------------------- /src/assets/icons/connect-segments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/connect-segments.svg -------------------------------------------------------------------------------- /src/assets/icons/crop_16_9-black-18dp-transformed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/crop_16_9-black-18dp-transformed.svg -------------------------------------------------------------------------------- /src/assets/icons/crop_16_9-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/crop_16_9-black-18dp.svg -------------------------------------------------------------------------------- /src/assets/icons/crop_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/crop_square.svg -------------------------------------------------------------------------------- /src/assets/icons/erase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/erase.svg -------------------------------------------------------------------------------- /src/assets/icons/ink_pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/ink_pen.svg -------------------------------------------------------------------------------- /src/assets/icons/ink_pen1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/ink_pen1.svg -------------------------------------------------------------------------------- /src/assets/icons/line-node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/line-node.svg -------------------------------------------------------------------------------- /src/assets/icons/merge-segments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/merge-segments.svg -------------------------------------------------------------------------------- /src/assets/icons/navigation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/navigation.svg -------------------------------------------------------------------------------- /src/assets/icons/navigation_outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/navigation_outline.svg -------------------------------------------------------------------------------- /src/assets/icons/pan_tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/pan_tool.svg -------------------------------------------------------------------------------- /src/assets/icons/remove-segments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/remove-segments.svg -------------------------------------------------------------------------------- /src/assets/icons/rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/rotate.svg -------------------------------------------------------------------------------- /src/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/search.svg -------------------------------------------------------------------------------- /src/assets/icons/share-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/share-black-18dp.svg -------------------------------------------------------------------------------- /src/assets/icons/smooth-path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/smooth-path.svg -------------------------------------------------------------------------------- /src/assets/icons/symmetrical-handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/symmetrical-handle.svg -------------------------------------------------------------------------------- /src/assets/icons/unsymmetrical-handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/icons/unsymmetrical-handle.svg -------------------------------------------------------------------------------- /src/assets/images/rotate_bc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/images/rotate_bc.png -------------------------------------------------------------------------------- /src/assets/images/rotate_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/images/rotate_bl.png -------------------------------------------------------------------------------- /src/assets/images/rotate_br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/images/rotate_br.png -------------------------------------------------------------------------------- /src/assets/images/rotate_lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/images/rotate_lc.png -------------------------------------------------------------------------------- /src/assets/images/rotate_rc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/images/rotate_rc.png -------------------------------------------------------------------------------- /src/assets/images/rotate_tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/images/rotate_tc.png -------------------------------------------------------------------------------- /src/assets/images/rotate_tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/images/rotate_tl.png -------------------------------------------------------------------------------- /src/assets/images/rotate_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/assets/images/rotate_tr.png -------------------------------------------------------------------------------- /src/environments/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/environments/consts.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | debug: false 4 | }; 5 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/src/variables.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ievgennaida/animator/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------