|
@@ -4,26 +4,26 @@
|
|
|
* @author Alexander Rose <alexander.rose@weirdbyte.de>
|
|
|
*/
|
|
|
|
|
|
+import { Mat4, Vec3 } from 'mol-math/linear-algebra';
|
|
|
+import { Box, PerforatedBox } from 'mol-geo/primitive/box';
|
|
|
+import { OctagonalPyramid, PerforatedOctagonalPyramid } from 'mol-geo/primitive/pyramid';
|
|
|
+import { Star } from 'mol-geo/primitive/star';
|
|
|
+import { Octahedron, PerforatedOctahedron } from 'mol-geo/primitive/octahedron';
|
|
|
+import { DiamondPrism, PentagonalPrism, HexagonalPrism } from 'mol-geo/primitive/prism';
|
|
|
+import { RuntimeContext } from 'mol-task';
|
|
|
import { Structure, StructureElement } from 'mol-model/structure';
|
|
|
-import { ComplexVisual, VisualUpdateState } from '..';
|
|
|
-import { RuntimeContext } from 'mol-task'
|
|
|
-import { Mesh } from '../../../geometry/mesh/mesh';
|
|
|
-import { PickingId } from '../../../geometry/picking';
|
|
|
-import { Loci, EmptyLoci } from 'mol-model/loci';
|
|
|
-import { MeshBuilder } from '../../../geometry/mesh/mesh-builder';
|
|
|
-import { Vec3, Mat4 } from 'mol-math/linear-algebra';
|
|
|
-import { getSaccharideShape, SaccharideShapes } from 'mol-model/structure/structure/carbohydrates/constants';
|
|
|
-import { LocationIterator } from '../../../util/location-iterator';
|
|
|
-import { OrderedSet, Interval } from 'mol-data/int';
|
|
|
-import { ComplexMeshVisual, ComplexMeshParams } from '../complex-visual';
|
|
|
+import { Mesh } from 'mol-geo/geometry/mesh/mesh';
|
|
|
+import { MeshBuilder } from 'mol-geo/geometry/mesh/mesh-builder';
|
|
|
import { SizeTheme, SizeThemeName, SizeThemeOptions } from 'mol-theme/size';
|
|
|
-import { addSphere } from '../../../geometry/mesh/builder/sphere';
|
|
|
-import { Box, PerforatedBox } from '../../../primitive/box';
|
|
|
-import { OctagonalPyramid, PerforatedOctagonalPyramid } from '../../../primitive/pyramid';
|
|
|
-import { Star } from '../../../primitive/star';
|
|
|
-import { Octahedron, PerforatedOctahedron } from '../../../primitive/octahedron';
|
|
|
-import { DiamondPrism, PentagonalPrism, HexagonalPrism } from '../../../primitive/prism';
|
|
|
+import { getSaccharideShape, SaccharideShapes } from 'mol-model/structure/structure/carbohydrates/constants';
|
|
|
+import { addSphere } from 'mol-geo/geometry/mesh/builder/sphere';
|
|
|
+import { ComplexMeshParams, ComplexMeshVisual } from '../complex-visual';
|
|
|
import { SelectParam, NumberParam, paramDefaultValues } from 'mol-util/parameter';
|
|
|
+import { ComplexVisual, VisualUpdateState } from '../index';
|
|
|
+import { LocationIterator } from 'mol-geo/util/location-iterator';
|
|
|
+import { PickingId } from 'mol-geo/geometry/picking';
|
|
|
+import { OrderedSet, Interval } from 'mol-data/int';
|
|
|
+import { EmptyLoci, Loci } from 'mol-model/loci';
|
|
|
|
|
|
const t = Mat4.identity()
|
|
|
const sVec = Vec3.zero()
|