-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Export WebGL Classes Expanded module exports for WebGL functionalities. * Bumped version to 1.0.19 in package.json Updated the version number in package.json from 1.0.18 to 1.0.19 for epiviz.gl project.
- Loading branch information
1 parent
b0249bf
commit 84f5ffc
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,29 @@ | ||
import DataProcessor from "./epiviz.gl/data-processor"; | ||
import Drawer from "./epiviz.gl/drawer"; | ||
import GenomeScale from "./epiviz.gl/genome-scale"; | ||
import GeometryMapper from "./epiviz.gl/geometry-mapper"; | ||
import MouseReader from "./epiviz.gl/mouse-reader"; | ||
import OffscreenWebGLDrawer from "./epiviz.gl/offscreen-webgl-drawer"; | ||
import SemanticZoomer from "./epiviz.gl/semantic-zoomer"; | ||
import SpecificationProcessor from "./epiviz.gl/specification-processor"; | ||
import SVGInteractor from "./epiviz.gl/svg-interactor"; | ||
import utilities from "./epiviz.gl/utilities"; | ||
import WebGLCanvasDrawer from "./epiviz.gl/webgl-drawer"; | ||
import WebGLVis from "./epiviz.gl/webgl-vis"; | ||
|
||
export default WebGLVis; | ||
|
||
export { | ||
DataProcessor, | ||
Drawer, | ||
GenomeScale, | ||
GeometryMapper, | ||
MouseReader, | ||
OffscreenWebGLDrawer, | ||
SVGInteractor, | ||
SemanticZoomer, | ||
SpecificationProcessor, | ||
WebGLCanvasDrawer, | ||
WebGLVis, | ||
utilities, | ||
}; |