molstar 3.0.0-dev.3 → 3.0.0-dev.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/README.md +187 -187
- package/build/viewer/embedded.html +43 -43
- package/build/viewer/index.html +95 -94
- package/build/viewer/molstar.css +1 -1
- package/build/viewer/molstar.js +1 -1
- package/lib/apps/docking-viewer/index.html +36 -36
- package/lib/apps/docking-viewer/viewport.js +2 -1
- package/lib/apps/viewer/embedded.html +43 -43
- package/lib/apps/viewer/index.html +95 -94
- package/lib/commonjs/apps/docking-viewer/viewport.js +2 -1
- package/lib/commonjs/examples/lighting/index.js +2 -1
- package/lib/commonjs/extensions/anvil/behavior.d.ts +3 -0
- package/lib/commonjs/extensions/anvil/representation.d.ts +13 -0
- package/lib/commonjs/extensions/cellpack/representation.d.ts +3 -0
- package/lib/commonjs/extensions/dnatco/confal-pyramids/representation.d.ts +9 -0
- package/lib/commonjs/extensions/rcsb/assembly-symmetry/behavior.d.ts +3 -0
- package/lib/commonjs/extensions/rcsb/assembly-symmetry/representation.d.ts +3 -0
- package/lib/commonjs/extensions/rcsb/validation-report/representation.d.ts +15 -0
- package/lib/commonjs/mol-canvas3d/canvas3d.d.ts +6 -0
- package/lib/commonjs/mol-canvas3d/helper/camera-helper.d.ts +3 -0
- package/lib/commonjs/mol-canvas3d/helper/handle-helper.d.ts +3 -0
- package/lib/commonjs/mol-canvas3d/helper/helper.d.ts +4 -0
- package/lib/commonjs/mol-canvas3d/passes/image.d.ts +3 -0
- package/lib/commonjs/mol-canvas3d/passes/postprocessing.d.ts +1 -0
- package/lib/commonjs/mol-canvas3d/passes/postprocessing.js +4 -2
- package/lib/commonjs/mol-geo/geometry/base.d.ts +2 -0
- package/lib/commonjs/mol-geo/geometry/base.js +2 -0
- package/lib/commonjs/mol-geo/geometry/cylinders/cylinders.d.ts +4 -1
- package/lib/commonjs/mol-geo/geometry/cylinders/cylinders.js +4 -2
- package/lib/commonjs/mol-geo/geometry/direct-volume/direct-volume.d.ts +1 -0
- package/lib/commonjs/mol-geo/geometry/image/image.d.ts +1 -0
- package/lib/commonjs/mol-geo/geometry/lines/lines.d.ts +1 -0
- package/lib/commonjs/mol-geo/geometry/mesh/color-smoothing.js +1 -1
- package/lib/commonjs/mol-geo/geometry/mesh/mesh.d.ts +3 -0
- package/lib/commonjs/mol-geo/geometry/mesh/mesh.js +4 -2
- package/lib/commonjs/mol-geo/geometry/points/points.d.ts +2 -1
- package/lib/commonjs/mol-geo/geometry/spheres/spheres.d.ts +3 -0
- package/lib/commonjs/mol-geo/geometry/spheres/spheres.js +4 -2
- package/lib/commonjs/mol-geo/geometry/substance-data.js +3 -3
- package/lib/commonjs/mol-geo/geometry/text/text.d.ts +1 -0
- package/lib/commonjs/mol-geo/geometry/texture-mesh/color-smoothing.js +3 -3
- package/lib/commonjs/mol-geo/geometry/texture-mesh/texture-mesh.d.ts +3 -0
- package/lib/commonjs/mol-geo/geometry/texture-mesh/texture-mesh.js +4 -2
- package/lib/commonjs/mol-gl/renderable/cylinders.d.ts +31 -28
- package/lib/commonjs/mol-gl/renderable/cylinders.js +2 -2
- package/lib/commonjs/mol-gl/renderable/direct-volume.d.ts +1 -0
- package/lib/commonjs/mol-gl/renderable/image.d.ts +1 -0
- package/lib/commonjs/mol-gl/renderable/lines.d.ts +1 -0
- package/lib/commonjs/mol-gl/renderable/mesh.d.ts +28 -25
- package/lib/commonjs/mol-gl/renderable/mesh.js +2 -2
- package/lib/commonjs/mol-gl/renderable/points.d.ts +1 -0
- package/lib/commonjs/mol-gl/renderable/schema.d.ts +1 -0
- package/lib/commonjs/mol-gl/renderable/schema.js +3 -3
- package/lib/commonjs/mol-gl/renderable/spheres.d.ts +31 -28
- package/lib/commonjs/mol-gl/renderable/spheres.js +2 -2
- package/lib/commonjs/mol-gl/renderable/text.d.ts +1 -0
- package/lib/commonjs/mol-gl/renderable/texture-mesh.d.ts +3 -0
- package/lib/commonjs/mol-gl/renderable/texture-mesh.js +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/apply-light-color.glsl.d.ts +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/apply-light-color.glsl.js +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/assign-color-varying.glsl.d.ts +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/assign-color-varying.glsl.js +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/assign-material-color.glsl.d.ts +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/assign-material-color.glsl.js +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/color-frag-params.glsl.d.ts +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/color-frag-params.glsl.js +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/color-vert-params.glsl.d.ts +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/color-vert-params.glsl.js +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/common-frag-params.glsl.d.ts +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/common-frag-params.glsl.js +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/common.glsl.d.ts +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/common.glsl.js +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/light-frag-params.glsl.d.ts +1 -1
- package/lib/commonjs/mol-gl/shader/chunks/light-frag-params.glsl.js +1 -1
- package/lib/commonjs/mol-gl/shader/cylinders.frag.d.ts +1 -1
- package/lib/commonjs/mol-gl/shader/cylinders.frag.js +1 -1
- package/lib/commonjs/mol-gl/shader/mesh.frag.d.ts +1 -1
- package/lib/commonjs/mol-gl/shader/mesh.frag.js +1 -1
- package/lib/commonjs/mol-gl/shader/postprocessing.frag.d.ts +1 -1
- package/lib/commonjs/mol-gl/shader/postprocessing.frag.js +1 -1
- package/lib/commonjs/mol-gl/shader/spheres.frag.d.ts +1 -1
- package/lib/commonjs/mol-gl/shader/spheres.frag.js +1 -1
- package/lib/commonjs/mol-model/structure/model/model.js +7 -3
- package/lib/commonjs/mol-model-formats/shape/ply.d.ts +6 -0
- package/lib/commonjs/mol-model-props/computed/representations/interactions-inter-unit-cylinder.d.ts +3 -0
- package/lib/commonjs/mol-model-props/computed/representations/interactions-intra-unit-cylinder.d.ts +3 -0
- package/lib/commonjs/mol-model-props/computed/representations/interactions.d.ts +9 -0
- package/lib/commonjs/mol-model-props/integrative/cross-link-restraint/representation.d.ts +12 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/selection/structure-focus-representation.d.ts +1 -0
- package/lib/commonjs/mol-plugin/behavior/dynamic/volume-streaming/model.d.ts +2 -3
- package/lib/commonjs/mol-plugin/commands.d.ts +3 -0
- package/lib/commonjs/mol-plugin/config.d.ts +1 -0
- package/lib/commonjs/mol-plugin/config.js +9 -3
- package/lib/commonjs/mol-plugin/util/viewport-screenshot.d.ts +9 -0
- package/lib/commonjs/mol-plugin-state/manager/structure/component.d.ts +2 -0
- package/lib/commonjs/mol-plugin-state/transforms/representation.d.ts +22 -0
- package/lib/commonjs/mol-plugin-ui/controls/parameters.d.ts +3 -2
- package/lib/commonjs/mol-plugin-ui/controls/parameters.js +11 -6
- package/lib/commonjs/mol-plugin-ui/hooks/use-behavior.d.ts +1 -1
- package/lib/commonjs/mol-plugin-ui/hooks/use-behavior.js +8 -17
- package/lib/commonjs/mol-plugin-ui/plugin.d.ts +1 -1
- package/lib/commonjs/mol-plugin-ui/plugin.js +76 -10
- package/lib/commonjs/mol-repr/shape/loci/angle.d.ts +3 -0
- package/lib/commonjs/mol-repr/shape/loci/common.d.ts +1 -0
- package/lib/commonjs/mol-repr/shape/loci/dihedral.d.ts +3 -0
- package/lib/commonjs/mol-repr/shape/loci/distance.d.ts +1 -0
- package/lib/commonjs/mol-repr/shape/loci/label.d.ts +1 -0
- package/lib/commonjs/mol-repr/shape/loci/orientation.d.ts +3 -0
- package/lib/commonjs/mol-repr/shape/loci/plane.d.ts +3 -0
- package/lib/commonjs/mol-repr/shape/model/unitcell.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/complex-visual.d.ts +12 -0
- package/lib/commonjs/mol-repr/structure/params.d.ts +16 -0
- package/lib/commonjs/mol-repr/structure/registry.d.ts +35 -1
- package/lib/commonjs/mol-repr/structure/representation/backbone.d.ts +9 -0
- package/lib/commonjs/mol-repr/structure/representation/backbone.js +2 -1
- package/lib/commonjs/mol-repr/structure/representation/ball-and-stick.d.ts +9 -0
- package/lib/commonjs/mol-repr/structure/representation/ball-and-stick.js +2 -1
- package/lib/commonjs/mol-repr/structure/representation/carbohydrate.d.ts +9 -0
- package/lib/commonjs/mol-repr/structure/representation/carbohydrate.js +2 -1
- package/lib/commonjs/mol-repr/structure/representation/cartoon.d.ts +9 -0
- package/lib/commonjs/mol-repr/structure/representation/cartoon.js +2 -1
- package/lib/commonjs/mol-repr/structure/representation/ellipsoid.d.ts +9 -0
- package/lib/commonjs/mol-repr/structure/representation/ellipsoid.js +2 -1
- package/lib/commonjs/mol-repr/structure/representation/gaussian-surface.d.ts +9 -0
- package/lib/commonjs/mol-repr/structure/representation/gaussian-surface.js +2 -1
- package/lib/commonjs/mol-repr/structure/representation/gaussian-volume.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/representation/label.d.ts +6 -3
- package/lib/commonjs/mol-repr/structure/representation/line.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/representation/molecular-surface.d.ts +9 -0
- package/lib/commonjs/mol-repr/structure/representation/molecular-surface.js +2 -1
- package/lib/commonjs/mol-repr/structure/representation/orientation.d.ts +9 -0
- package/lib/commonjs/mol-repr/structure/representation/orientation.js +2 -1
- package/lib/commonjs/mol-repr/structure/representation/point.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/representation/putty.d.ts +9 -0
- package/lib/commonjs/mol-repr/structure/representation/putty.js +2 -1
- package/lib/commonjs/mol-repr/structure/representation/spacefill.d.ts +9 -0
- package/lib/commonjs/mol-repr/structure/representation/spacefill.js +2 -1
- package/lib/commonjs/mol-repr/structure/units-visual.d.ts +16 -0
- package/lib/commonjs/mol-repr/structure/visual/bond-inter-unit-cylinder.d.ts +6 -0
- package/lib/commonjs/mol-repr/structure/visual/bond-inter-unit-line.d.ts +1 -0
- package/lib/commonjs/mol-repr/structure/visual/bond-intra-unit-cylinder.d.ts +6 -0
- package/lib/commonjs/mol-repr/structure/visual/bond-intra-unit-line.d.ts +1 -0
- package/lib/commonjs/mol-repr/structure/visual/carbohydrate-link-cylinder.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/visual/carbohydrate-symbol-mesh.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/visual/carbohydrate-terminal-link-cylinder.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/visual/element-cross.d.ts +1 -0
- package/lib/commonjs/mol-repr/structure/visual/element-point.d.ts +1 -0
- package/lib/commonjs/mol-repr/structure/visual/element-sphere.d.ts +6 -0
- package/lib/commonjs/mol-repr/structure/visual/ellipsoid-mesh.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/visual/gaussian-density-volume.d.ts +2 -0
- package/lib/commonjs/mol-repr/structure/visual/gaussian-surface-mesh.d.ts +12 -0
- package/lib/commonjs/mol-repr/structure/visual/gaussian-surface-wireframe.d.ts +1 -0
- package/lib/commonjs/mol-repr/structure/visual/label-text.d.ts +3 -2
- package/lib/commonjs/mol-repr/structure/visual/label-text.js +2 -2
- package/lib/commonjs/mol-repr/structure/visual/molecular-surface-mesh.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/visual/molecular-surface-wireframe.d.ts +1 -0
- package/lib/commonjs/mol-repr/structure/visual/nucleotide-block-mesh.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/visual/nucleotide-ring-mesh.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/visual/orientation-ellipsoid-mesh.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/visual/polymer-backbone-cylinder.d.ts +6 -0
- package/lib/commonjs/mol-repr/structure/visual/polymer-backbone-sphere.d.ts +6 -0
- package/lib/commonjs/mol-repr/structure/visual/polymer-direction-wedge.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/visual/polymer-gap-cylinder.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/visual/polymer-trace-mesh.d.ts +3 -0
- package/lib/commonjs/mol-repr/structure/visual/polymer-tube-mesh.d.ts +3 -0
- package/lib/commonjs/mol-repr/volume/direct-volume.d.ts +3 -0
- package/lib/commonjs/mol-repr/volume/isosurface.d.ts +16 -0
- package/lib/commonjs/mol-repr/volume/isosurface.js +2 -1
- package/lib/commonjs/mol-repr/volume/registry.d.ts +5 -0
- package/lib/commonjs/mol-repr/volume/representation.d.ts +1 -0
- package/lib/commonjs/mol-repr/volume/slice.d.ts +3 -0
- package/lib/commonjs/mol-script/language/builder.d.ts +1 -0
- package/lib/commonjs/mol-theme/color/illustrative.d.ts +2 -0
- package/lib/commonjs/mol-theme/color/illustrative.js +2 -2
- package/lib/commonjs/mol-theme/color.d.ts +1 -0
- package/lib/commonjs/mol-util/material.d.ts +5 -1
- package/lib/commonjs/mol-util/material.js +9 -7
- package/lib/examples/alpha-orbitals/index.html +60 -60
- package/lib/examples/basic-wrapper/index.html +136 -136
- package/lib/examples/lighting/index.html +86 -86
- package/lib/examples/lighting/index.js +2 -1
- package/lib/examples/proteopedia-wrapper/index.html +235 -235
- package/lib/extensions/anvil/behavior.d.ts +3 -0
- package/lib/extensions/anvil/representation.d.ts +13 -0
- package/lib/extensions/cellpack/representation.d.ts +3 -0
- package/lib/extensions/dnatco/confal-pyramids/representation.d.ts +9 -0
- package/lib/extensions/rcsb/assembly-symmetry/behavior.d.ts +3 -0
- package/lib/extensions/rcsb/assembly-symmetry/representation.d.ts +3 -0
- package/lib/extensions/rcsb/validation-report/representation.d.ts +15 -0
- package/lib/mol-canvas3d/canvas3d.d.ts +6 -0
- package/lib/mol-canvas3d/helper/camera-helper.d.ts +3 -0
- package/lib/mol-canvas3d/helper/handle-helper.d.ts +3 -0
- package/lib/mol-canvas3d/helper/helper.d.ts +4 -0
- package/lib/mol-canvas3d/passes/image.d.ts +3 -0
- package/lib/mol-canvas3d/passes/postprocessing.d.ts +1 -0
- package/lib/mol-canvas3d/passes/postprocessing.js +4 -2
- package/lib/mol-geo/geometry/base.d.ts +2 -0
- package/lib/mol-geo/geometry/base.js +2 -0
- package/lib/mol-geo/geometry/cylinders/cylinders.d.ts +4 -1
- package/lib/mol-geo/geometry/cylinders/cylinders.js +4 -2
- package/lib/mol-geo/geometry/direct-volume/direct-volume.d.ts +1 -0
- package/lib/mol-geo/geometry/image/image.d.ts +1 -0
- package/lib/mol-geo/geometry/lines/lines.d.ts +1 -0
- package/lib/mol-geo/geometry/mesh/color-smoothing.js +1 -1
- package/lib/mol-geo/geometry/mesh/mesh.d.ts +3 -0
- package/lib/mol-geo/geometry/mesh/mesh.js +4 -2
- package/lib/mol-geo/geometry/points/points.d.ts +2 -1
- package/lib/mol-geo/geometry/spheres/spheres.d.ts +3 -0
- package/lib/mol-geo/geometry/spheres/spheres.js +4 -2
- package/lib/mol-geo/geometry/substance-data.js +3 -3
- package/lib/mol-geo/geometry/text/text.d.ts +1 -0
- package/lib/mol-geo/geometry/texture-mesh/color-smoothing.js +3 -3
- package/lib/mol-geo/geometry/texture-mesh/texture-mesh.d.ts +3 -0
- package/lib/mol-geo/geometry/texture-mesh/texture-mesh.js +4 -2
- package/lib/mol-gl/renderable/cylinders.d.ts +31 -28
- package/lib/mol-gl/renderable/cylinders.js +3 -3
- package/lib/mol-gl/renderable/direct-volume.d.ts +1 -0
- package/lib/mol-gl/renderable/image.d.ts +1 -0
- package/lib/mol-gl/renderable/lines.d.ts +1 -0
- package/lib/mol-gl/renderable/mesh.d.ts +28 -25
- package/lib/mol-gl/renderable/mesh.js +3 -3
- package/lib/mol-gl/renderable/points.d.ts +1 -0
- package/lib/mol-gl/renderable/schema.d.ts +1 -0
- package/lib/mol-gl/renderable/schema.js +3 -3
- package/lib/mol-gl/renderable/spheres.d.ts +31 -28
- package/lib/mol-gl/renderable/spheres.js +3 -3
- package/lib/mol-gl/renderable/text.d.ts +1 -0
- package/lib/mol-gl/renderable/texture-mesh.d.ts +3 -0
- package/lib/mol-gl/renderable/texture-mesh.js +1 -1
- package/lib/mol-gl/shader/chunks/apply-light-color.glsl.d.ts +1 -1
- package/lib/mol-gl/shader/chunks/apply-light-color.glsl.js +1 -1
- package/lib/mol-gl/shader/chunks/assign-color-varying.glsl.d.ts +1 -1
- package/lib/mol-gl/shader/chunks/assign-color-varying.glsl.js +1 -1
- package/lib/mol-gl/shader/chunks/assign-material-color.glsl.d.ts +1 -1
- package/lib/mol-gl/shader/chunks/assign-material-color.glsl.js +1 -1
- package/lib/mol-gl/shader/chunks/color-frag-params.glsl.d.ts +1 -1
- package/lib/mol-gl/shader/chunks/color-frag-params.glsl.js +1 -1
- package/lib/mol-gl/shader/chunks/color-vert-params.glsl.d.ts +1 -1
- package/lib/mol-gl/shader/chunks/color-vert-params.glsl.js +1 -1
- package/lib/mol-gl/shader/chunks/common-frag-params.glsl.d.ts +1 -1
- package/lib/mol-gl/shader/chunks/common-frag-params.glsl.js +1 -1
- package/lib/mol-gl/shader/chunks/common.glsl.d.ts +1 -1
- package/lib/mol-gl/shader/chunks/common.glsl.js +1 -1
- package/lib/mol-gl/shader/chunks/light-frag-params.glsl.d.ts +1 -1
- package/lib/mol-gl/shader/chunks/light-frag-params.glsl.js +1 -1
- package/lib/mol-gl/shader/cylinders.frag.d.ts +1 -1
- package/lib/mol-gl/shader/cylinders.frag.js +1 -1
- package/lib/mol-gl/shader/mesh.frag.d.ts +1 -1
- package/lib/mol-gl/shader/mesh.frag.js +1 -1
- package/lib/mol-gl/shader/postprocessing.frag.d.ts +1 -1
- package/lib/mol-gl/shader/postprocessing.frag.js +1 -1
- package/lib/mol-gl/shader/spheres.frag.d.ts +1 -1
- package/lib/mol-gl/shader/spheres.frag.js +1 -1
- package/lib/mol-model/structure/model/model.js +7 -3
- package/lib/mol-model-formats/shape/ply.d.ts +6 -0
- package/lib/mol-model-props/computed/representations/interactions-inter-unit-cylinder.d.ts +3 -0
- package/lib/mol-model-props/computed/representations/interactions-intra-unit-cylinder.d.ts +3 -0
- package/lib/mol-model-props/computed/representations/interactions.d.ts +9 -0
- package/lib/mol-model-props/integrative/cross-link-restraint/representation.d.ts +12 -0
- package/lib/mol-plugin/behavior/dynamic/selection/structure-focus-representation.d.ts +1 -0
- package/lib/mol-plugin/behavior/dynamic/volume-streaming/model.d.ts +2 -3
- package/lib/mol-plugin/commands.d.ts +3 -0
- package/lib/mol-plugin/config.d.ts +1 -0
- package/lib/mol-plugin/config.js +8 -3
- package/lib/mol-plugin/util/viewport-screenshot.d.ts +9 -0
- package/lib/mol-plugin/version.js +2 -2
- package/lib/mol-plugin-state/manager/structure/component.d.ts +2 -0
- package/lib/mol-plugin-state/transforms/representation.d.ts +22 -0
- package/lib/mol-plugin-ui/controls/parameters.d.ts +3 -2
- package/lib/mol-plugin-ui/controls/parameters.js +12 -7
- package/lib/mol-plugin-ui/hooks/use-behavior.d.ts +1 -1
- package/lib/mol-plugin-ui/hooks/use-behavior.js +9 -18
- package/lib/mol-plugin-ui/plugin.d.ts +1 -1
- package/lib/mol-plugin-ui/plugin.js +76 -10
- package/lib/mol-plugin-ui/skin/base/base.scss +32 -32
- package/lib/mol-plugin-ui/skin/base/components/controls-base.scss +333 -333
- package/lib/mol-plugin-ui/skin/base/components/controls.scss +418 -418
- package/lib/mol-plugin-ui/skin/base/components/help.scss +27 -27
- package/lib/mol-plugin-ui/skin/base/components/line-graph.scss +67 -67
- package/lib/mol-plugin-ui/skin/base/components/log.scss +100 -100
- package/lib/mol-plugin-ui/skin/base/components/misc.scss +643 -616
- package/lib/mol-plugin-ui/skin/base/components/sequence.scss +125 -125
- package/lib/mol-plugin-ui/skin/base/components/slider.scss +165 -165
- package/lib/mol-plugin-ui/skin/base/components/tasks.scss +99 -99
- package/lib/mol-plugin-ui/skin/base/components/toast.scss +83 -83
- package/lib/mol-plugin-ui/skin/base/components/transformer.scss +163 -163
- package/lib/mol-plugin-ui/skin/base/components/viewport.scss +127 -127
- package/lib/mol-plugin-ui/skin/base/layout/common.scss +71 -71
- package/lib/mol-plugin-ui/skin/base/layout/controls-landscape.scss +89 -89
- package/lib/mol-plugin-ui/skin/base/layout/controls-outside.scss +98 -98
- package/lib/mol-plugin-ui/skin/base/layout/controls-portrait.scss +108 -108
- package/lib/mol-plugin-ui/skin/base/layout.scss +40 -40
- package/lib/mol-plugin-ui/skin/base/logo.scss +12 -12
- package/lib/mol-plugin-ui/skin/base/normalize.scss +209 -209
- package/lib/mol-plugin-ui/skin/base/ui.scss +40 -40
- package/lib/mol-plugin-ui/skin/base/variables.scss +85 -85
- package/lib/mol-plugin-ui/skin/blue.scss +1 -1
- package/lib/mol-plugin-ui/skin/colors/blue.scss +23 -23
- package/lib/mol-plugin-ui/skin/colors/dark.scss +23 -23
- package/lib/mol-plugin-ui/skin/colors/light.scss +29 -29
- package/lib/mol-plugin-ui/skin/dark.scss +1 -1
- package/lib/mol-plugin-ui/skin/light.scss +1 -1
- package/lib/mol-repr/shape/loci/angle.d.ts +3 -0
- package/lib/mol-repr/shape/loci/common.d.ts +1 -0
- package/lib/mol-repr/shape/loci/dihedral.d.ts +3 -0
- package/lib/mol-repr/shape/loci/distance.d.ts +1 -0
- package/lib/mol-repr/shape/loci/label.d.ts +1 -0
- package/lib/mol-repr/shape/loci/orientation.d.ts +3 -0
- package/lib/mol-repr/shape/loci/plane.d.ts +3 -0
- package/lib/mol-repr/shape/model/unitcell.d.ts +3 -0
- package/lib/mol-repr/structure/complex-visual.d.ts +12 -0
- package/lib/mol-repr/structure/params.d.ts +16 -0
- package/lib/mol-repr/structure/registry.d.ts +35 -1
- package/lib/mol-repr/structure/representation/backbone.d.ts +9 -0
- package/lib/mol-repr/structure/representation/backbone.js +2 -1
- package/lib/mol-repr/structure/representation/ball-and-stick.d.ts +9 -0
- package/lib/mol-repr/structure/representation/ball-and-stick.js +2 -1
- package/lib/mol-repr/structure/representation/carbohydrate.d.ts +9 -0
- package/lib/mol-repr/structure/representation/carbohydrate.js +2 -1
- package/lib/mol-repr/structure/representation/cartoon.d.ts +9 -0
- package/lib/mol-repr/structure/representation/cartoon.js +2 -1
- package/lib/mol-repr/structure/representation/ellipsoid.d.ts +9 -0
- package/lib/mol-repr/structure/representation/ellipsoid.js +2 -1
- package/lib/mol-repr/structure/representation/gaussian-surface.d.ts +9 -0
- package/lib/mol-repr/structure/representation/gaussian-surface.js +2 -1
- package/lib/mol-repr/structure/representation/gaussian-volume.d.ts +3 -0
- package/lib/mol-repr/structure/representation/label.d.ts +6 -3
- package/lib/mol-repr/structure/representation/line.d.ts +3 -0
- package/lib/mol-repr/structure/representation/molecular-surface.d.ts +9 -0
- package/lib/mol-repr/structure/representation/molecular-surface.js +2 -1
- package/lib/mol-repr/structure/representation/orientation.d.ts +9 -0
- package/lib/mol-repr/structure/representation/orientation.js +2 -1
- package/lib/mol-repr/structure/representation/point.d.ts +3 -0
- package/lib/mol-repr/structure/representation/putty.d.ts +9 -0
- package/lib/mol-repr/structure/representation/putty.js +2 -1
- package/lib/mol-repr/structure/representation/spacefill.d.ts +9 -0
- package/lib/mol-repr/structure/representation/spacefill.js +2 -1
- package/lib/mol-repr/structure/units-visual.d.ts +16 -0
- package/lib/mol-repr/structure/visual/bond-inter-unit-cylinder.d.ts +6 -0
- package/lib/mol-repr/structure/visual/bond-inter-unit-line.d.ts +1 -0
- package/lib/mol-repr/structure/visual/bond-intra-unit-cylinder.d.ts +6 -0
- package/lib/mol-repr/structure/visual/bond-intra-unit-line.d.ts +1 -0
- package/lib/mol-repr/structure/visual/carbohydrate-link-cylinder.d.ts +3 -0
- package/lib/mol-repr/structure/visual/carbohydrate-symbol-mesh.d.ts +3 -0
- package/lib/mol-repr/structure/visual/carbohydrate-terminal-link-cylinder.d.ts +3 -0
- package/lib/mol-repr/structure/visual/element-cross.d.ts +1 -0
- package/lib/mol-repr/structure/visual/element-point.d.ts +1 -0
- package/lib/mol-repr/structure/visual/element-sphere.d.ts +6 -0
- package/lib/mol-repr/structure/visual/ellipsoid-mesh.d.ts +3 -0
- package/lib/mol-repr/structure/visual/gaussian-density-volume.d.ts +2 -0
- package/lib/mol-repr/structure/visual/gaussian-surface-mesh.d.ts +12 -0
- package/lib/mol-repr/structure/visual/gaussian-surface-wireframe.d.ts +1 -0
- package/lib/mol-repr/structure/visual/label-text.d.ts +3 -2
- package/lib/mol-repr/structure/visual/label-text.js +2 -2
- package/lib/mol-repr/structure/visual/molecular-surface-mesh.d.ts +3 -0
- package/lib/mol-repr/structure/visual/molecular-surface-wireframe.d.ts +1 -0
- package/lib/mol-repr/structure/visual/nucleotide-block-mesh.d.ts +3 -0
- package/lib/mol-repr/structure/visual/nucleotide-ring-mesh.d.ts +3 -0
- package/lib/mol-repr/structure/visual/orientation-ellipsoid-mesh.d.ts +3 -0
- package/lib/mol-repr/structure/visual/polymer-backbone-cylinder.d.ts +6 -0
- package/lib/mol-repr/structure/visual/polymer-backbone-sphere.d.ts +6 -0
- package/lib/mol-repr/structure/visual/polymer-direction-wedge.d.ts +3 -0
- package/lib/mol-repr/structure/visual/polymer-gap-cylinder.d.ts +3 -0
- package/lib/mol-repr/structure/visual/polymer-trace-mesh.d.ts +3 -0
- package/lib/mol-repr/structure/visual/polymer-tube-mesh.d.ts +3 -0
- package/lib/mol-repr/volume/direct-volume.d.ts +3 -0
- package/lib/mol-repr/volume/isosurface.d.ts +16 -0
- package/lib/mol-repr/volume/isosurface.js +2 -1
- package/lib/mol-repr/volume/registry.d.ts +5 -0
- package/lib/mol-repr/volume/representation.d.ts +1 -0
- package/lib/mol-repr/volume/slice.d.ts +3 -0
- package/lib/mol-script/language/builder.d.ts +1 -0
- package/lib/mol-theme/color/illustrative.d.ts +2 -0
- package/lib/mol-theme/color/illustrative.js +2 -2
- package/lib/mol-theme/color.d.ts +1 -0
- package/lib/mol-util/material.d.ts +5 -1
- package/lib/mol-util/material.js +9 -7
- package/package.json +162 -160
|
@@ -24,11 +24,14 @@ export declare const PolymerGapParams: {
|
|
|
24
24
|
flatShaded: PD.BooleanParam;
|
|
25
25
|
ignoreLight: PD.BooleanParam;
|
|
26
26
|
xrayShaded: PD.BooleanParam;
|
|
27
|
+
bumpFrequency: PD.Numeric;
|
|
28
|
+
bumpAmplitude: PD.Numeric;
|
|
27
29
|
alpha: PD.Numeric;
|
|
28
30
|
quality: PD.Select<"auto" | "medium" | "high" | "low" | "custom" | "highest" | "higher" | "lower" | "lowest">;
|
|
29
31
|
material: PD.Group<PD.Normalize<{
|
|
30
32
|
metalness: number;
|
|
31
33
|
roughness: number;
|
|
34
|
+
bumpiness: number;
|
|
32
35
|
}>>;
|
|
33
36
|
};
|
|
34
37
|
export declare type PolymerGapParams = typeof PolymerGapParams;
|
|
@@ -42,11 +42,14 @@ export declare const PolymerTraceParams: {
|
|
|
42
42
|
flatShaded: PD.BooleanParam;
|
|
43
43
|
ignoreLight: PD.BooleanParam;
|
|
44
44
|
xrayShaded: PD.BooleanParam;
|
|
45
|
+
bumpFrequency: PD.Numeric;
|
|
46
|
+
bumpAmplitude: PD.Numeric;
|
|
45
47
|
alpha: PD.Numeric;
|
|
46
48
|
quality: PD.Select<"auto" | "medium" | "high" | "low" | "custom" | "highest" | "higher" | "lower" | "lowest">;
|
|
47
49
|
material: PD.Group<PD.Normalize<{
|
|
48
50
|
metalness: number;
|
|
49
51
|
roughness: number;
|
|
52
|
+
bumpiness: number;
|
|
50
53
|
}>>;
|
|
51
54
|
};
|
|
52
55
|
export declare type PolymerTraceParams = typeof PolymerTraceParams;
|
|
@@ -30,11 +30,14 @@ export declare const PolymerTubeParams: {
|
|
|
30
30
|
flatShaded: PD.BooleanParam;
|
|
31
31
|
ignoreLight: PD.BooleanParam;
|
|
32
32
|
xrayShaded: PD.BooleanParam;
|
|
33
|
+
bumpFrequency: PD.Numeric;
|
|
34
|
+
bumpAmplitude: PD.Numeric;
|
|
33
35
|
alpha: PD.Numeric;
|
|
34
36
|
quality: PD.Select<"auto" | "medium" | "high" | "low" | "custom" | "highest" | "higher" | "lower" | "lowest">;
|
|
35
37
|
material: PD.Group<PD.Normalize<{
|
|
36
38
|
metalness: number;
|
|
37
39
|
roughness: number;
|
|
40
|
+
bumpiness: number;
|
|
38
41
|
}>>;
|
|
39
42
|
};
|
|
40
43
|
export declare type PolymerTubeParams = typeof PolymerTubeParams;
|
|
@@ -73,6 +73,7 @@ export declare const DirectVolumeParams: {
|
|
|
73
73
|
material: PD.Group<PD.Normalize<{
|
|
74
74
|
metalness: number;
|
|
75
75
|
roughness: number;
|
|
76
|
+
bumpiness: number;
|
|
76
77
|
}>>;
|
|
77
78
|
};
|
|
78
79
|
export declare type DirectVolumeParams = typeof DirectVolumeParams;
|
|
@@ -127,6 +128,7 @@ export declare function getDirectVolumeParams(ctx: ThemeRegistryContext, volume:
|
|
|
127
128
|
material: PD.Group<PD.Normalize<{
|
|
128
129
|
metalness: number;
|
|
129
130
|
roughness: number;
|
|
131
|
+
bumpiness: number;
|
|
130
132
|
}>>;
|
|
131
133
|
};
|
|
132
134
|
export declare type DirectVolumeProps = PD.Values<DirectVolumeParams>;
|
|
@@ -183,5 +185,6 @@ export declare const DirectVolumeRepresentationProvider: VolumeRepresentationPro
|
|
|
183
185
|
material: PD.Group<PD.Normalize<{
|
|
184
186
|
metalness: number;
|
|
185
187
|
roughness: number;
|
|
188
|
+
bumpiness: number;
|
|
186
189
|
}>>;
|
|
187
190
|
}, "direct-volume">;
|
|
@@ -93,10 +93,13 @@ export declare function IsosurfaceVisual(materialId: number, volume: Volume, pro
|
|
|
93
93
|
flatShaded: PD.BooleanParam;
|
|
94
94
|
ignoreLight: PD.BooleanParam;
|
|
95
95
|
xrayShaded: PD.BooleanParam;
|
|
96
|
+
bumpFrequency: PD.Numeric;
|
|
97
|
+
bumpAmplitude: PD.Numeric;
|
|
96
98
|
alpha: PD.Numeric;
|
|
97
99
|
material: PD.Group<PD.Normalize<{
|
|
98
100
|
metalness: number;
|
|
99
101
|
roughness: number;
|
|
102
|
+
bumpiness: number;
|
|
100
103
|
}>>;
|
|
101
104
|
}>;
|
|
102
105
|
export declare function eachIsosurface(loci: Loci, volume: Volume, props: VolumeIsosurfaceProps, apply: (interval: Interval) => boolean): boolean;
|
|
@@ -153,10 +156,13 @@ export declare const IsosurfaceMeshParams: {
|
|
|
153
156
|
flatShaded: PD.BooleanParam;
|
|
154
157
|
ignoreLight: PD.BooleanParam;
|
|
155
158
|
xrayShaded: PD.BooleanParam;
|
|
159
|
+
bumpFrequency: PD.Numeric;
|
|
160
|
+
bumpAmplitude: PD.Numeric;
|
|
156
161
|
alpha: PD.Numeric;
|
|
157
162
|
material: PD.Group<PD.Normalize<{
|
|
158
163
|
metalness: number;
|
|
159
164
|
roughness: number;
|
|
165
|
+
bumpiness: number;
|
|
160
166
|
}>>;
|
|
161
167
|
};
|
|
162
168
|
export declare type IsosurfaceMeshParams = typeof IsosurfaceMeshParams;
|
|
@@ -215,12 +221,14 @@ export declare const IsosurfaceWireframeParams: {
|
|
|
215
221
|
material: PD.Group<PD.Normalize<{
|
|
216
222
|
metalness: number;
|
|
217
223
|
roughness: number;
|
|
224
|
+
bumpiness: number;
|
|
218
225
|
}>>;
|
|
219
226
|
};
|
|
220
227
|
export declare type IsosurfaceWireframeParams = typeof IsosurfaceWireframeParams;
|
|
221
228
|
export declare function IsosurfaceWireframeVisual(materialId: number): VolumeVisual<IsosurfaceWireframeParams>;
|
|
222
229
|
export declare const IsosurfaceParams: {
|
|
223
230
|
visuals: PD.MultiSelect<"solid" | "wireframe">;
|
|
231
|
+
bumpFrequency: PD.Numeric;
|
|
224
232
|
quality: {
|
|
225
233
|
isEssential: boolean;
|
|
226
234
|
type: "select";
|
|
@@ -272,6 +280,7 @@ export declare const IsosurfaceParams: {
|
|
|
272
280
|
material: PD.Group<PD.Normalize<{
|
|
273
281
|
metalness: number;
|
|
274
282
|
roughness: number;
|
|
283
|
+
bumpiness: number;
|
|
275
284
|
}>>;
|
|
276
285
|
tryUseGpu: PD.BooleanParam;
|
|
277
286
|
doubleSided: PD.BooleanParam;
|
|
@@ -279,10 +288,12 @@ export declare const IsosurfaceParams: {
|
|
|
279
288
|
flatShaded: PD.BooleanParam;
|
|
280
289
|
ignoreLight: PD.BooleanParam;
|
|
281
290
|
xrayShaded: PD.BooleanParam;
|
|
291
|
+
bumpAmplitude: PD.Numeric;
|
|
282
292
|
};
|
|
283
293
|
export declare type IsosurfaceParams = typeof IsosurfaceParams;
|
|
284
294
|
export declare function getIsosurfaceParams(ctx: ThemeRegistryContext, volume: Volume): {
|
|
285
295
|
visuals: PD.MultiSelect<"solid" | "wireframe">;
|
|
296
|
+
bumpFrequency: PD.Numeric;
|
|
286
297
|
quality: {
|
|
287
298
|
isEssential: boolean;
|
|
288
299
|
type: "select";
|
|
@@ -334,6 +345,7 @@ export declare function getIsosurfaceParams(ctx: ThemeRegistryContext, volume: V
|
|
|
334
345
|
material: PD.Group<PD.Normalize<{
|
|
335
346
|
metalness: number;
|
|
336
347
|
roughness: number;
|
|
348
|
+
bumpiness: number;
|
|
337
349
|
}>>;
|
|
338
350
|
tryUseGpu: PD.BooleanParam;
|
|
339
351
|
doubleSided: PD.BooleanParam;
|
|
@@ -341,11 +353,13 @@ export declare function getIsosurfaceParams(ctx: ThemeRegistryContext, volume: V
|
|
|
341
353
|
flatShaded: PD.BooleanParam;
|
|
342
354
|
ignoreLight: PD.BooleanParam;
|
|
343
355
|
xrayShaded: PD.BooleanParam;
|
|
356
|
+
bumpAmplitude: PD.Numeric;
|
|
344
357
|
};
|
|
345
358
|
export declare type IsosurfaceRepresentation = VolumeRepresentation<IsosurfaceParams>;
|
|
346
359
|
export declare function IsosurfaceRepresentation(ctx: RepresentationContext, getParams: RepresentationParamsGetter<Volume, IsosurfaceParams>): IsosurfaceRepresentation;
|
|
347
360
|
export declare const IsosurfaceRepresentationProvider: VolumeRepresentationProvider<{
|
|
348
361
|
visuals: PD.MultiSelect<"solid" | "wireframe">;
|
|
362
|
+
bumpFrequency: PD.Numeric;
|
|
349
363
|
quality: {
|
|
350
364
|
isEssential: boolean;
|
|
351
365
|
type: "select";
|
|
@@ -397,6 +411,7 @@ export declare const IsosurfaceRepresentationProvider: VolumeRepresentationProvi
|
|
|
397
411
|
material: PD.Group<PD.Normalize<{
|
|
398
412
|
metalness: number;
|
|
399
413
|
roughness: number;
|
|
414
|
+
bumpiness: number;
|
|
400
415
|
}>>;
|
|
401
416
|
tryUseGpu: PD.BooleanParam;
|
|
402
417
|
doubleSided: PD.BooleanParam;
|
|
@@ -404,4 +419,5 @@ export declare const IsosurfaceRepresentationProvider: VolumeRepresentationProvi
|
|
|
404
419
|
flatShaded: PD.BooleanParam;
|
|
405
420
|
ignoreLight: PD.BooleanParam;
|
|
406
421
|
xrayShaded: PD.BooleanParam;
|
|
422
|
+
bumpAmplitude: PD.Numeric;
|
|
407
423
|
}, "isosurface">;
|
|
@@ -25,6 +25,7 @@ var util_1 = require("./util");
|
|
|
25
25
|
var texture_mesh_1 = require("../../mol-geo/geometry/texture-mesh/texture-mesh");
|
|
26
26
|
var isosurface_1 = require("../../mol-gl/compute/marching-cubes/isosurface");
|
|
27
27
|
var custom_property_1 = require("../../mol-model/custom-property");
|
|
28
|
+
var base_1 = require("../../mol-geo/geometry/base");
|
|
28
29
|
exports.VolumeIsosurfaceParams = {
|
|
29
30
|
isoValue: volume_1.Volume.IsoValueParam
|
|
30
31
|
};
|
|
@@ -232,7 +233,7 @@ var IsosurfaceVisuals = {
|
|
|
232
233
|
'solid': function (ctx, getParams) { return (0, representation_1.VolumeRepresentation)('Isosurface mesh', ctx, getParams, IsosurfaceVisual, getLoci); },
|
|
233
234
|
'wireframe': function (ctx, getParams) { return (0, representation_1.VolumeRepresentation)('Isosurface wireframe', ctx, getParams, IsosurfaceWireframeVisual, getLoci); },
|
|
234
235
|
};
|
|
235
|
-
exports.IsosurfaceParams = (0, tslib_1.__assign)((0, tslib_1.__assign)((0, tslib_1.__assign)({}, exports.IsosurfaceMeshParams), exports.IsosurfaceWireframeParams), { visuals: param_definition_1.ParamDefinition.MultiSelect(['solid'], param_definition_1.ParamDefinition.objectToOptions(IsosurfaceVisuals)) });
|
|
236
|
+
exports.IsosurfaceParams = (0, tslib_1.__assign)((0, tslib_1.__assign)((0, tslib_1.__assign)({}, exports.IsosurfaceMeshParams), exports.IsosurfaceWireframeParams), { visuals: param_definition_1.ParamDefinition.MultiSelect(['solid'], param_definition_1.ParamDefinition.objectToOptions(IsosurfaceVisuals)), bumpFrequency: param_definition_1.ParamDefinition.Numeric(1, { min: 0, max: 10, step: 0.1 }, base_1.BaseGeometry.ShadingCategory) });
|
|
236
237
|
function getIsosurfaceParams(ctx, volume) {
|
|
237
238
|
var p = param_definition_1.ParamDefinition.clone(exports.IsosurfaceParams);
|
|
238
239
|
p.isoValue = volume_1.Volume.createIsoValueParam(volume_1.Volume.IsoValue.relative(2), volume.grid.stats);
|
|
@@ -12,6 +12,7 @@ export declare namespace VolumeRepresentationRegistry {
|
|
|
12
12
|
export const BuiltIn: {
|
|
13
13
|
isosurface: import("./representation").VolumeRepresentationProvider<{
|
|
14
14
|
visuals: import("../../mol-util/param-definition").ParamDefinition.MultiSelect<"solid" | "wireframe">;
|
|
15
|
+
bumpFrequency: import("../../mol-util/param-definition").ParamDefinition.Numeric;
|
|
15
16
|
quality: {
|
|
16
17
|
isEssential: boolean;
|
|
17
18
|
type: "select";
|
|
@@ -63,6 +64,7 @@ export declare namespace VolumeRepresentationRegistry {
|
|
|
63
64
|
material: import("../../mol-util/param-definition").ParamDefinition.Group<import("../../mol-util/param-definition").ParamDefinition.Normalize<{
|
|
64
65
|
metalness: number;
|
|
65
66
|
roughness: number;
|
|
67
|
+
bumpiness: number;
|
|
66
68
|
}>>;
|
|
67
69
|
tryUseGpu: import("../../mol-util/param-definition").ParamDefinition.BooleanParam;
|
|
68
70
|
doubleSided: import("../../mol-util/param-definition").ParamDefinition.BooleanParam;
|
|
@@ -70,6 +72,7 @@ export declare namespace VolumeRepresentationRegistry {
|
|
|
70
72
|
flatShaded: import("../../mol-util/param-definition").ParamDefinition.BooleanParam;
|
|
71
73
|
ignoreLight: import("../../mol-util/param-definition").ParamDefinition.BooleanParam;
|
|
72
74
|
xrayShaded: import("../../mol-util/param-definition").ParamDefinition.BooleanParam;
|
|
75
|
+
bumpAmplitude: import("../../mol-util/param-definition").ParamDefinition.Numeric;
|
|
73
76
|
}, "isosurface">;
|
|
74
77
|
slice: import("./representation").VolumeRepresentationProvider<{
|
|
75
78
|
quality: {
|
|
@@ -123,6 +126,7 @@ export declare namespace VolumeRepresentationRegistry {
|
|
|
123
126
|
material: import("../../mol-util/param-definition").ParamDefinition.Group<import("../../mol-util/param-definition").ParamDefinition.Normalize<{
|
|
124
127
|
metalness: number;
|
|
125
128
|
roughness: number;
|
|
129
|
+
bumpiness: number;
|
|
126
130
|
}>>;
|
|
127
131
|
}, "slice">;
|
|
128
132
|
'direct-volume': import("./representation").VolumeRepresentationProvider<{
|
|
@@ -176,6 +180,7 @@ export declare namespace VolumeRepresentationRegistry {
|
|
|
176
180
|
material: import("../../mol-util/param-definition").ParamDefinition.Group<import("../../mol-util/param-definition").ParamDefinition.Normalize<{
|
|
177
181
|
metalness: number;
|
|
178
182
|
roughness: number;
|
|
183
|
+
bumpiness: number;
|
|
179
184
|
}>>;
|
|
180
185
|
}, "direct-volume">;
|
|
181
186
|
};
|
|
@@ -63,6 +63,7 @@ export declare const SliceParams: {
|
|
|
63
63
|
material: PD.Group<PD.Normalize<{
|
|
64
64
|
metalness: number;
|
|
65
65
|
roughness: number;
|
|
66
|
+
bumpiness: number;
|
|
66
67
|
}>>;
|
|
67
68
|
};
|
|
68
69
|
export declare type SliceParams = typeof SliceParams;
|
|
@@ -118,6 +119,7 @@ export declare function getSliceParams(ctx: ThemeRegistryContext, volume: Volume
|
|
|
118
119
|
material: PD.Group<PD.Normalize<{
|
|
119
120
|
metalness: number;
|
|
120
121
|
roughness: number;
|
|
122
|
+
bumpiness: number;
|
|
121
123
|
}>>;
|
|
122
124
|
};
|
|
123
125
|
export declare function SliceVisual(materialId: number): VolumeVisual<SliceParams>;
|
|
@@ -174,5 +176,6 @@ export declare const SliceRepresentationProvider: VolumeRepresentationProvider<{
|
|
|
174
176
|
material: PD.Group<PD.Normalize<{
|
|
175
177
|
metalness: number;
|
|
176
178
|
roughness: number;
|
|
179
|
+
bumpiness: number;
|
|
177
180
|
}>>;
|
|
178
181
|
}, "slice">;
|
|
@@ -10,6 +10,7 @@ export declare namespace MolScriptBuilder {
|
|
|
10
10
|
'@header': string;
|
|
11
11
|
type: {
|
|
12
12
|
'@header': string;
|
|
13
|
+
/** atom macromolecular property set */
|
|
13
14
|
bool: MSymbol<import("./symbol").Arguments<import("./symbol").Arguments.PropTypes<{
|
|
14
15
|
0: import("./symbol").Argument<import("./type").Type.AnyValue>;
|
|
15
16
|
}>>, import("./type").Type.OneOf<boolean>>;
|
|
@@ -7,6 +7,7 @@ import { ColorTheme } from '../color';
|
|
|
7
7
|
import { ParamDefinition as PD } from '../../mol-util/param-definition';
|
|
8
8
|
import { ThemeDataContext } from '../theme';
|
|
9
9
|
export declare const IllustrativeColorThemeParams: {
|
|
10
|
+
carbonLightness: PD.Numeric;
|
|
10
11
|
palette: PD.Mapped<PD.NamedParams<PD.Normalize<{
|
|
11
12
|
maxCount: number;
|
|
12
13
|
hue: [number, number];
|
|
@@ -24,6 +25,7 @@ export declare const IllustrativeColorThemeParams: {
|
|
|
24
25
|
};
|
|
25
26
|
export declare type IllustrativeColorThemeParams = typeof IllustrativeColorThemeParams;
|
|
26
27
|
export declare function getIllustrativeColorThemeParams(ctx: ThemeDataContext): {
|
|
28
|
+
carbonLightness: PD.Numeric;
|
|
27
29
|
palette: PD.Mapped<PD.NamedParams<PD.Normalize<{
|
|
28
30
|
maxCount: number;
|
|
29
31
|
hue: [number, number];
|
|
@@ -13,7 +13,7 @@ var param_definition_1 = require("../../mol-util/param-definition");
|
|
|
13
13
|
var chain_id_1 = require("./chain-id");
|
|
14
14
|
var DefaultIllustrativeColor = (0, color_1.Color)(0xEEEEEE);
|
|
15
15
|
var Description = "Assigns an illustrative color that gives every chain a unique color with lighter carbons (inspired by David Goodsell's Molecule of the Month style).";
|
|
16
|
-
exports.IllustrativeColorThemeParams = (0, tslib_1.__assign)({}, chain_id_1.ChainIdColorThemeParams);
|
|
16
|
+
exports.IllustrativeColorThemeParams = (0, tslib_1.__assign)((0, tslib_1.__assign)({}, chain_id_1.ChainIdColorThemeParams), { carbonLightness: param_definition_1.ParamDefinition.Numeric(0.8, { min: -6, max: 6, step: 0.1 }) });
|
|
17
17
|
function getIllustrativeColorThemeParams(ctx) {
|
|
18
18
|
return exports.IllustrativeColorThemeParams; // TODO return copy
|
|
19
19
|
}
|
|
@@ -22,7 +22,7 @@ function IllustrativeColorTheme(ctx, props) {
|
|
|
22
22
|
var _a = (0, chain_id_1.ChainIdColorTheme)(ctx, props), chainIdColor = _a.color, legend = _a.legend;
|
|
23
23
|
function illustrativeColor(location, typeSymbol) {
|
|
24
24
|
var baseColor = chainIdColor(location, false);
|
|
25
|
-
return typeSymbol === 'C' ? color_1.Color.lighten(baseColor,
|
|
25
|
+
return typeSymbol === 'C' ? color_1.Color.lighten(baseColor, props.carbonLightness) : baseColor;
|
|
26
26
|
}
|
|
27
27
|
function color(location) {
|
|
28
28
|
if (structure_1.StructureElement.Location.is(location) && structure_1.Unit.isAtomic(location.unit)) {
|
|
@@ -164,6 +164,7 @@ declare namespace ColorTheme {
|
|
|
164
164
|
scale: PD.Select<"DGwif" | "DGwoct" | "Oct-IF">;
|
|
165
165
|
}, "hydrophobicity">;
|
|
166
166
|
illustrative: Provider<{
|
|
167
|
+
carbonLightness: PD.Numeric;
|
|
167
168
|
palette: PD.Mapped<PD.NamedParams<PD.Normalize<{
|
|
168
169
|
maxCount: number;
|
|
169
170
|
hue: [number, number];
|
|
@@ -10,20 +10,24 @@ export interface Material {
|
|
|
10
10
|
metalness: number;
|
|
11
11
|
/** Normalized to [0, 1] range */
|
|
12
12
|
roughness: number;
|
|
13
|
+
/** Normalized to [0, 1] range */
|
|
14
|
+
bumpiness: number;
|
|
13
15
|
}
|
|
14
16
|
export declare function Material(values?: Partial<Material>): {
|
|
15
17
|
metalness: number;
|
|
16
18
|
roughness: number;
|
|
19
|
+
bumpiness: number;
|
|
17
20
|
};
|
|
18
21
|
export declare namespace Material {
|
|
19
22
|
const Zero: Material;
|
|
20
23
|
function toArray(material: Material, array: NumberArray, offset: number): NumberArray;
|
|
21
|
-
function toString({ metalness, roughness }: Material): string;
|
|
24
|
+
function toString({ metalness, roughness, bumpiness }: Material): string;
|
|
22
25
|
function getParam(info?: {
|
|
23
26
|
isExpanded?: boolean;
|
|
24
27
|
isFlat?: boolean;
|
|
25
28
|
}): PD.Group<PD.Normalize<{
|
|
26
29
|
metalness: number;
|
|
27
30
|
roughness: number;
|
|
31
|
+
bumpiness: number;
|
|
28
32
|
}>>;
|
|
29
33
|
}
|
|
@@ -13,27 +13,29 @@ function Material(values) {
|
|
|
13
13
|
}
|
|
14
14
|
exports.Material = Material;
|
|
15
15
|
(function (Material) {
|
|
16
|
-
Material.Zero = { metalness: 0, roughness: 0 };
|
|
16
|
+
Material.Zero = { metalness: 0, roughness: 0, bumpiness: 0 };
|
|
17
17
|
function toArray(material, array, offset) {
|
|
18
18
|
array[offset] = material.metalness * 255;
|
|
19
19
|
array[offset + 1] = material.roughness * 255;
|
|
20
|
+
array[offset + 2] = material.bumpiness * 255;
|
|
20
21
|
return array;
|
|
21
22
|
}
|
|
22
23
|
Material.toArray = toArray;
|
|
23
24
|
function toString(_a) {
|
|
24
|
-
var metalness = _a.metalness, roughness = _a.roughness;
|
|
25
|
-
return "M ".concat(metalness.toFixed(2), " | R ").concat(roughness.toFixed(2));
|
|
25
|
+
var metalness = _a.metalness, roughness = _a.roughness, bumpiness = _a.bumpiness;
|
|
26
|
+
return "M ".concat(metalness.toFixed(2), " | R ").concat(roughness.toFixed(2), " | B ").concat(bumpiness.toFixed(2));
|
|
26
27
|
}
|
|
27
28
|
Material.toString = toString;
|
|
28
29
|
function getParam(info) {
|
|
29
30
|
return param_definition_1.ParamDefinition.Group({
|
|
30
31
|
metalness: param_definition_1.ParamDefinition.Numeric(0, { min: 0, max: 1, step: 0.01 }),
|
|
31
32
|
roughness: param_definition_1.ParamDefinition.Numeric(1, { min: 0, max: 1, step: 0.01 }),
|
|
33
|
+
bumpiness: param_definition_1.ParamDefinition.Numeric(0, { min: 0, max: 1, step: 0.01 }),
|
|
32
34
|
}, (0, tslib_1.__assign)((0, tslib_1.__assign)({}, info), { presets: [
|
|
33
|
-
[{ metalness: 0, roughness: 1 }, 'Matte'],
|
|
34
|
-
[{ metalness: 0, roughness: 0.2 }, 'Plastic'],
|
|
35
|
-
[{ metalness: 0, roughness: 0.6 }, 'Glossy'],
|
|
36
|
-
[{ metalness: 1.0, roughness: 0.6 }, 'Metallic'],
|
|
35
|
+
[{ metalness: 0, roughness: 1, bumpiness: 0 }, 'Matte'],
|
|
36
|
+
[{ metalness: 0, roughness: 0.2, bumpiness: 0 }, 'Plastic'],
|
|
37
|
+
[{ metalness: 0, roughness: 0.6, bumpiness: 0 }, 'Glossy'],
|
|
38
|
+
[{ metalness: 1.0, roughness: 0.6, bumpiness: 0 }, 'Metallic'],
|
|
37
39
|
] }));
|
|
38
40
|
}
|
|
39
41
|
Material.getParam = getParam;
|
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8" />
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
|
|
6
|
-
<title>Mol* Alpha Orbitals Example</title>
|
|
7
|
-
<style>
|
|
8
|
-
* {
|
|
9
|
-
margin: 0;
|
|
10
|
-
padding: 0;
|
|
11
|
-
box-sizing: border-box;
|
|
12
|
-
}
|
|
13
|
-
#app {
|
|
14
|
-
position: absolute;
|
|
15
|
-
left: 0;
|
|
16
|
-
top: 0;
|
|
17
|
-
bottom: 0;
|
|
18
|
-
right: 0;
|
|
19
|
-
}
|
|
20
|
-
#controls {
|
|
21
|
-
position: absolute;
|
|
22
|
-
left: 8px;
|
|
23
|
-
top: 8px;
|
|
24
|
-
width: 300px;
|
|
25
|
-
}
|
|
26
|
-
#sponsor {
|
|
27
|
-
position: absolute;
|
|
28
|
-
left: 8px;
|
|
29
|
-
bottom: 8px;
|
|
30
|
-
font-family: "Helvetica Neue", "Segoe UI", Helvetica, "Source Sans Pro", Arial, sans-serif;
|
|
31
|
-
font-size: 12px;
|
|
32
|
-
text-align: center;
|
|
33
|
-
}
|
|
34
|
-
#sponsor svg {
|
|
35
|
-
fill: #128EA4;
|
|
36
|
-
width: 100px;
|
|
37
|
-
}
|
|
38
|
-
#sponsor a {
|
|
39
|
-
text-decoration: none;
|
|
40
|
-
color: #128EA4;
|
|
41
|
-
}
|
|
42
|
-
</style>
|
|
43
|
-
<link rel="stylesheet" type="text/css" href="molstar.css" />
|
|
44
|
-
<script type="text/javascript" src="./index.js"></script>
|
|
45
|
-
</head>
|
|
46
|
-
<body>
|
|
47
|
-
<div id="app"></div>
|
|
48
|
-
<div id='controls'></div>
|
|
49
|
-
<div id='sponsor'>
|
|
50
|
-
<a href='https://www.entos.ai/envision' target="_blank" rel="noopener">
|
|
51
|
-
<svg class="makeStyles-root-46" viewBox="0 0 190 36" xmlns="http://www.w3.org/2000/svg"><path d="M32.2591 28.6707C32.2591 32.3914 29.2421 35.407 25.5214 35.407C22.0752 35.407 19.2338 32.8206 18.8325 29.4831V29.4775C18.8143 29.3312 18.8018 29.1835 18.7934 29.0344C18.7934 29.0316 18.7921 29.0274 18.7921 29.0246V29.0177C18.7865 28.902 18.7837 28.7864 18.7837 28.6707C18.7837 26.2557 20.0532 24.1389 21.9609 22.9503C21.9623 22.9489 21.9651 22.9489 21.9665 22.9475C22.0933 22.8666 22.2243 22.7914 22.3581 22.7203C22.3581 22.7203 22.3595 22.7203 22.3595 22.7189C23.3029 22.2173 24.3787 21.933 25.5214 21.933C29.2421 21.933 32.2591 24.9486 32.2591 28.6707Z"></path><path d="M25.5214 14.0692C29.2421 14.0692 32.2591 11.0522 32.2591 7.33146C32.2591 3.61074 29.2421 0.59375 25.5214 0.59375C22.0529 0.59375 19.1962 3.21637 18.8255 6.58592C18.8185 6.67092 18.8116 6.75454 18.8018 6.83815C18.7893 7.00119 18.7837 7.16563 18.7837 7.33146C18.7837 9.73669 20.0434 11.8465 21.94 13.038C22.0891 13.116 22.2355 13.201 22.3776 13.2916C22.3783 13.2923 22.379 13.2926 22.3797 13.293C22.3804 13.2933 22.3811 13.2937 22.3818 13.2944C23.3196 13.7891 24.3871 14.0692 25.5214 14.0692Z"></path><path d="M19.3645 12.4113C20.2926 12.4113 21.1694 12.638 21.94 13.038C20.0434 11.8465 18.7837 9.73669 18.7837 7.33146C18.7837 7.16563 18.7893 7.00119 18.8018 6.83815C18.4688 9.76455 16.1385 12.0866 13.2065 12.4044C13.8545 13.1193 14.3785 13.9484 14.745 14.857C15.7497 13.3798 17.4443 12.4113 19.3645 12.4113Z"></path><path d="M14.7312 21.1249V21.1236C14.1279 20.2331 13.7767 19.1587 13.7767 18.0007V17.9728C13.7767 15.3084 12.2285 13.0035 9.9835 11.911C9.98141 11.9103 9.97967 11.9096 9.97793 11.9089C9.97619 11.9082 9.97444 11.9075 9.97235 11.9068C9.96817 11.904 9.96538 11.9026 9.9612 11.9012C9.95981 11.9012 9.95981 11.8998 9.95981 11.8998C9.9417 11.8915 9.92394 11.8831 9.90618 11.8747C9.8884 11.8664 9.87063 11.858 9.85251 11.8497C9.82046 11.8343 9.78701 11.819 9.75357 11.8051L9.74521 11.8009C8.91745 11.4372 8.0019 11.2351 7.03898 11.2351C3.31826 11.2351 0.30127 14.2521 0.30127 17.9728C0.30127 21.6935 3.31826 24.7105 7.03898 24.7105C7.98797 24.7105 8.89098 24.514 9.71037 24.1601C9.71246 24.1594 9.7142 24.1583 9.71594 24.1573C9.71768 24.1562 9.71943 24.1552 9.72152 24.1545C9.8107 24.1169 9.8985 24.0765 9.9849 24.0333L9.98629 24.0319C10.7625 23.6919 11.6181 23.5037 12.5197 23.5037C12.7524 23.5037 12.9824 23.5163 13.2081 23.54C13.2082 23.5399 13.2081 23.54 13.2081 23.54C15.0168 23.7365 16.5971 24.695 17.6185 26.0885C17.9195 25.1688 18.3752 24.3201 18.9563 23.5732C17.1964 23.4464 15.6635 22.5058 14.7312 21.1249Z"></path><g clip-path="url(#clip0)"><path d="M106.391 18.0021C106.391 11.3724 101.039 6 94.4389 6H88.4585C81.8581 6 76.5061 11.3724 76.5061 18.0021V30.0042H81.2845V18.0021C81.2845 14.0268 84.4941 10.8008 88.4585 10.8008H94.4347C98.395 10.8008 101.609 14.0226 101.609 18.0021V30.0042H106.391V18.0021Z"></path><path d="M149.432 6H142.258C135.653 6 130.301 11.3724 130.301 18.0021C130.301 24.6319 135.653 30.0042 142.258 30.0042H149.432C156.036 30.0042 161.388 24.6319 161.388 18.0021C161.388 11.3724 156.032 6 149.432 6ZM149.432 25.1992H142.258C138.297 25.1992 135.084 21.9774 135.084 17.9979C135.084 14.0183 138.293 10.7966 142.258 10.7966H149.432C153.392 10.7966 156.606 14.0183 156.606 17.9979C156.606 21.9774 153.392 25.1992 149.432 25.1992Z"></path><path d="M74.1151 25.1992H58.5736C55.4526 25.1992 52.804 23.1924 51.8171 20.3983H74.1151V17.9979C74.1151 17.1808 74.1868 16.3807 74.3175 15.5975H51.8171C52.804 12.8033 55.4526 10.7966 58.5736 10.7966H76.0383C77.1475 8.87458 78.6911 7.22773 80.5299 6H58.5736C51.969 6 46.6169 11.3724 46.6169 18.0021C46.6169 24.6276 51.969 30 58.5736 30H74.1151V25.1992Z"></path><path d="M120.74 6H115.958H102.369C104.212 7.22773 105.751 8.87458 106.861 10.8008H115.958V30H120.74V10.8008H129.838C130.947 8.87458 132.486 7.22773 134.329 6H120.74Z"></path><path d="M182.906 15.6017H169.756C168.436 15.6017 167.365 14.5264 167.365 13.2013C167.365 11.8762 168.436 10.8008 169.756 10.8008H188.882V6H169.756C165.796 6 162.582 9.22173 162.582 13.2013C162.582 17.1808 165.791 20.4025 169.756 20.4025H182.906C184.226 20.4025 185.297 21.4779 185.297 22.803C185.297 24.1281 184.226 25.2034 182.906 25.2034H161.852C160.743 27.1297 159.199 28.7765 157.361 30.0042H182.906C186.866 30.0042 190.08 26.7825 190.08 22.803C190.08 18.8234 186.866 15.6017 182.906 15.6017Z"></path></g><defs><clipPath id="clip0"><rect width="190" height="24" fill="white" transform="translate(0 6)"></rect></clipPath></defs></svg>
|
|
52
|
-
<div>
|
|
53
|
-
Entos Envision
|
|
54
|
-
</div>
|
|
55
|
-
</a>
|
|
56
|
-
</div>
|
|
57
|
-
<script>
|
|
58
|
-
AlphaOrbitalsExample.init('app')
|
|
59
|
-
</script>
|
|
60
|
-
</body>
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
|
|
6
|
+
<title>Mol* Alpha Orbitals Example</title>
|
|
7
|
+
<style>
|
|
8
|
+
* {
|
|
9
|
+
margin: 0;
|
|
10
|
+
padding: 0;
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
}
|
|
13
|
+
#app {
|
|
14
|
+
position: absolute;
|
|
15
|
+
left: 0;
|
|
16
|
+
top: 0;
|
|
17
|
+
bottom: 0;
|
|
18
|
+
right: 0;
|
|
19
|
+
}
|
|
20
|
+
#controls {
|
|
21
|
+
position: absolute;
|
|
22
|
+
left: 8px;
|
|
23
|
+
top: 8px;
|
|
24
|
+
width: 300px;
|
|
25
|
+
}
|
|
26
|
+
#sponsor {
|
|
27
|
+
position: absolute;
|
|
28
|
+
left: 8px;
|
|
29
|
+
bottom: 8px;
|
|
30
|
+
font-family: "Helvetica Neue", "Segoe UI", Helvetica, "Source Sans Pro", Arial, sans-serif;
|
|
31
|
+
font-size: 12px;
|
|
32
|
+
text-align: center;
|
|
33
|
+
}
|
|
34
|
+
#sponsor svg {
|
|
35
|
+
fill: #128EA4;
|
|
36
|
+
width: 100px;
|
|
37
|
+
}
|
|
38
|
+
#sponsor a {
|
|
39
|
+
text-decoration: none;
|
|
40
|
+
color: #128EA4;
|
|
41
|
+
}
|
|
42
|
+
</style>
|
|
43
|
+
<link rel="stylesheet" type="text/css" href="molstar.css" />
|
|
44
|
+
<script type="text/javascript" src="./index.js"></script>
|
|
45
|
+
</head>
|
|
46
|
+
<body>
|
|
47
|
+
<div id="app"></div>
|
|
48
|
+
<div id='controls'></div>
|
|
49
|
+
<div id='sponsor'>
|
|
50
|
+
<a href='https://www.entos.ai/envision' target="_blank" rel="noopener">
|
|
51
|
+
<svg class="makeStyles-root-46" viewBox="0 0 190 36" xmlns="http://www.w3.org/2000/svg"><path d="M32.2591 28.6707C32.2591 32.3914 29.2421 35.407 25.5214 35.407C22.0752 35.407 19.2338 32.8206 18.8325 29.4831V29.4775C18.8143 29.3312 18.8018 29.1835 18.7934 29.0344C18.7934 29.0316 18.7921 29.0274 18.7921 29.0246V29.0177C18.7865 28.902 18.7837 28.7864 18.7837 28.6707C18.7837 26.2557 20.0532 24.1389 21.9609 22.9503C21.9623 22.9489 21.9651 22.9489 21.9665 22.9475C22.0933 22.8666 22.2243 22.7914 22.3581 22.7203C22.3581 22.7203 22.3595 22.7203 22.3595 22.7189C23.3029 22.2173 24.3787 21.933 25.5214 21.933C29.2421 21.933 32.2591 24.9486 32.2591 28.6707Z"></path><path d="M25.5214 14.0692C29.2421 14.0692 32.2591 11.0522 32.2591 7.33146C32.2591 3.61074 29.2421 0.59375 25.5214 0.59375C22.0529 0.59375 19.1962 3.21637 18.8255 6.58592C18.8185 6.67092 18.8116 6.75454 18.8018 6.83815C18.7893 7.00119 18.7837 7.16563 18.7837 7.33146C18.7837 9.73669 20.0434 11.8465 21.94 13.038C22.0891 13.116 22.2355 13.201 22.3776 13.2916C22.3783 13.2923 22.379 13.2926 22.3797 13.293C22.3804 13.2933 22.3811 13.2937 22.3818 13.2944C23.3196 13.7891 24.3871 14.0692 25.5214 14.0692Z"></path><path d="M19.3645 12.4113C20.2926 12.4113 21.1694 12.638 21.94 13.038C20.0434 11.8465 18.7837 9.73669 18.7837 7.33146C18.7837 7.16563 18.7893 7.00119 18.8018 6.83815C18.4688 9.76455 16.1385 12.0866 13.2065 12.4044C13.8545 13.1193 14.3785 13.9484 14.745 14.857C15.7497 13.3798 17.4443 12.4113 19.3645 12.4113Z"></path><path d="M14.7312 21.1249V21.1236C14.1279 20.2331 13.7767 19.1587 13.7767 18.0007V17.9728C13.7767 15.3084 12.2285 13.0035 9.9835 11.911C9.98141 11.9103 9.97967 11.9096 9.97793 11.9089C9.97619 11.9082 9.97444 11.9075 9.97235 11.9068C9.96817 11.904 9.96538 11.9026 9.9612 11.9012C9.95981 11.9012 9.95981 11.8998 9.95981 11.8998C9.9417 11.8915 9.92394 11.8831 9.90618 11.8747C9.8884 11.8664 9.87063 11.858 9.85251 11.8497C9.82046 11.8343 9.78701 11.819 9.75357 11.8051L9.74521 11.8009C8.91745 11.4372 8.0019 11.2351 7.03898 11.2351C3.31826 11.2351 0.30127 14.2521 0.30127 17.9728C0.30127 21.6935 3.31826 24.7105 7.03898 24.7105C7.98797 24.7105 8.89098 24.514 9.71037 24.1601C9.71246 24.1594 9.7142 24.1583 9.71594 24.1573C9.71768 24.1562 9.71943 24.1552 9.72152 24.1545C9.8107 24.1169 9.8985 24.0765 9.9849 24.0333L9.98629 24.0319C10.7625 23.6919 11.6181 23.5037 12.5197 23.5037C12.7524 23.5037 12.9824 23.5163 13.2081 23.54C13.2082 23.5399 13.2081 23.54 13.2081 23.54C15.0168 23.7365 16.5971 24.695 17.6185 26.0885C17.9195 25.1688 18.3752 24.3201 18.9563 23.5732C17.1964 23.4464 15.6635 22.5058 14.7312 21.1249Z"></path><g clip-path="url(#clip0)"><path d="M106.391 18.0021C106.391 11.3724 101.039 6 94.4389 6H88.4585C81.8581 6 76.5061 11.3724 76.5061 18.0021V30.0042H81.2845V18.0021C81.2845 14.0268 84.4941 10.8008 88.4585 10.8008H94.4347C98.395 10.8008 101.609 14.0226 101.609 18.0021V30.0042H106.391V18.0021Z"></path><path d="M149.432 6H142.258C135.653 6 130.301 11.3724 130.301 18.0021C130.301 24.6319 135.653 30.0042 142.258 30.0042H149.432C156.036 30.0042 161.388 24.6319 161.388 18.0021C161.388 11.3724 156.032 6 149.432 6ZM149.432 25.1992H142.258C138.297 25.1992 135.084 21.9774 135.084 17.9979C135.084 14.0183 138.293 10.7966 142.258 10.7966H149.432C153.392 10.7966 156.606 14.0183 156.606 17.9979C156.606 21.9774 153.392 25.1992 149.432 25.1992Z"></path><path d="M74.1151 25.1992H58.5736C55.4526 25.1992 52.804 23.1924 51.8171 20.3983H74.1151V17.9979C74.1151 17.1808 74.1868 16.3807 74.3175 15.5975H51.8171C52.804 12.8033 55.4526 10.7966 58.5736 10.7966H76.0383C77.1475 8.87458 78.6911 7.22773 80.5299 6H58.5736C51.969 6 46.6169 11.3724 46.6169 18.0021C46.6169 24.6276 51.969 30 58.5736 30H74.1151V25.1992Z"></path><path d="M120.74 6H115.958H102.369C104.212 7.22773 105.751 8.87458 106.861 10.8008H115.958V30H120.74V10.8008H129.838C130.947 8.87458 132.486 7.22773 134.329 6H120.74Z"></path><path d="M182.906 15.6017H169.756C168.436 15.6017 167.365 14.5264 167.365 13.2013C167.365 11.8762 168.436 10.8008 169.756 10.8008H188.882V6H169.756C165.796 6 162.582 9.22173 162.582 13.2013C162.582 17.1808 165.791 20.4025 169.756 20.4025H182.906C184.226 20.4025 185.297 21.4779 185.297 22.803C185.297 24.1281 184.226 25.2034 182.906 25.2034H161.852C160.743 27.1297 159.199 28.7765 157.361 30.0042H182.906C186.866 30.0042 190.08 26.7825 190.08 22.803C190.08 18.8234 186.866 15.6017 182.906 15.6017Z"></path></g><defs><clipPath id="clip0"><rect width="190" height="24" fill="white" transform="translate(0 6)"></rect></clipPath></defs></svg>
|
|
52
|
+
<div>
|
|
53
|
+
Entos Envision
|
|
54
|
+
</div>
|
|
55
|
+
</a>
|
|
56
|
+
</div>
|
|
57
|
+
<script>
|
|
58
|
+
AlphaOrbitalsExample.init('app')
|
|
59
|
+
</script>
|
|
60
|
+
</body>
|
|
61
61
|
</html>
|