@chemistry/mol3dview
Version:
Crystal Structure Viewer
15 lines (14 loc) • 387 B
TypeScript
import { Vec3 } from "@chemistry/math";
import { Matrix3x4 } from "@chemistry/math";
import { CellAtom } from "./CellAtom";
export declare class Link {
atom: CellAtom;
symetry: Matrix3x4;
order: number;
/**
* Calc position of atom
* @type {Vec3}
*/
fractional: Vec3;
constructor(atom: CellAtom, symetry: Matrix3x4, order?: number);
}