123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /**
- * Copyright (c) 2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- */
- import { VolumeData, VolumeIsoValue } from './data';
- import { OrderedSet } from '../../mol-data/int';
- import { Sphere3D } from '../../mol-math/geometry';
- import { Vec3, Mat4 } from '../../mol-math/linear-algebra';
- import { BoundaryHelper } from '../../mol-math/geometry/boundary-helper';
- import { CubeFormat } from '../../mol-model-formats/volume/cube';
- export namespace Volume {
- export type CellIndex = { readonly '@type': 'cell-index' } & number
- export function isOrbitals(volume: VolumeData) {
- if (!CubeFormat.is(volume.sourceData)) return false;
- return volume.sourceData.data.header.orbitals;
- }
- export interface Loci { readonly kind: 'volume-loci', readonly volume: VolumeData }
- export function Loci(volume: VolumeData): Loci { return { kind: 'volume-loci', volume }; }
- export function isLoci(x: any): x is Loci { return !!x && x.kind === 'volume-loci'; }
- export function areLociEqual(a: Loci, b: Loci) { return a.volume === b.volume; }
- export function isLociEmpty(loci: Loci) { return loci.volume.data.data.length === 0; }
- export function getBoundingSphere(volume: VolumeData, boundingSphere?: Sphere3D) {
- if (!boundingSphere) boundingSphere = Sphere3D();
- const transform = VolumeData.getGridToCartesianTransform(volume);
- const [x, y, z] = volume.data.space.dimensions;
- const cpA = Vec3.create(0, 0, 0); Vec3.transformMat4(cpA, cpA, transform);
- const cpB = Vec3.create(x, y, z); Vec3.transformMat4(cpB, cpB, transform);
- const cpC = Vec3.create(x, 0, 0); Vec3.transformMat4(cpC, cpC, transform);
- const cpD = Vec3.create(0, y, z); Vec3.transformMat4(cpD, cpC, transform);
- const cpE = Vec3.create(0, 0, z); Vec3.transformMat4(cpE, cpE, transform);
- const cpF = Vec3.create(x, 0, z); Vec3.transformMat4(cpF, cpF, transform);
- const cpG = Vec3.create(x, y, 0); Vec3.transformMat4(cpG, cpG, transform);
- const cpH = Vec3.create(0, y, 0); Vec3.transformMat4(cpH, cpH, transform);
- const center = Vec3();
- Vec3.add(center, cpA, cpB);
- Vec3.scale(center, center, 0.5);
- const d = Math.max(Vec3.distance(cpA, cpB), Vec3.distance(cpC, cpD));
- Sphere3D.set(boundingSphere, center, d / 2);
- Sphere3D.setExtrema(boundingSphere, [cpA, cpB, cpC, cpD, cpE, cpF, cpG, cpH]);
- return boundingSphere;
- }
- export namespace Isosurface {
- export interface Loci { readonly kind: 'isosurface-loci', readonly volume: VolumeData, readonly isoValue: VolumeIsoValue }
- export function Loci(volume: VolumeData, isoValue: VolumeIsoValue): Loci { return { kind: 'isosurface-loci', volume, isoValue }; }
- export function isLoci(x: any): x is Loci { return !!x && x.kind === 'isosurface-loci'; }
- export function areLociEqual(a: Loci, b: Loci) { return a.volume === b.volume && VolumeIsoValue.areSame(a.isoValue, b.isoValue, a.volume.dataStats); }
- export function isLociEmpty(loci: Loci) { return loci.volume.data.data.length === 0; }
- export function getBoundingSphere(volume: VolumeData, isoValue: VolumeIsoValue, boundingSphere?: Sphere3D) {
- // TODO get bounding sphere for subgrid with values >= isoValue
- return Volume.getBoundingSphere(volume, boundingSphere);
- }
- }
- export namespace Cell {
- export interface Loci { readonly kind: 'cell-loci', readonly volume: VolumeData, readonly indices: OrderedSet<CellIndex> }
- export function Loci(volume: VolumeData, indices: OrderedSet<CellIndex>): Loci { return { kind: 'cell-loci', volume, indices }; }
- export function isLoci(x: any): x is Loci { return !!x && x.kind === 'cell-loci'; }
- export function areLociEqual(a: Loci, b: Loci) { return a.volume === b.volume && OrderedSet.areEqual(a.indices, b.indices); }
- export function isLociEmpty(loci: Loci) { return OrderedSet.size(loci.indices) === 0; }
- const boundaryHelper = new BoundaryHelper('98');
- const tmpBoundaryPos = Vec3();
- export function getBoundingSphere(volume: VolumeData, indices: OrderedSet<CellIndex>, boundingSphere?: Sphere3D) {
- boundaryHelper.reset();
- const transform = VolumeData.getGridToCartesianTransform(volume);
- const { getCoords } = volume.data.space;
- for (let i = 0, _i = OrderedSet.size(indices); i < _i; i++) {
- const o = OrderedSet.getAt(indices, i);
- getCoords(o, tmpBoundaryPos);
- Vec3.transformMat4(tmpBoundaryPos, tmpBoundaryPos, transform);
- boundaryHelper.includePosition(tmpBoundaryPos);
- }
- boundaryHelper.finishedIncludeStep();
- for (let i = 0, _i = OrderedSet.size(indices); i < _i; i++) {
- const o = OrderedSet.getAt(indices, i);
- getCoords(o, tmpBoundaryPos);
- Vec3.transformMat4(tmpBoundaryPos, tmpBoundaryPos, transform);
- boundaryHelper.radiusPosition(tmpBoundaryPos);
- }
- const bs = boundaryHelper.getSphere(boundingSphere);
- return Sphere3D.expand(bs, bs, Mat4.getMaxScaleOnAxis(transform) * 10);
- }
- }
- }
|