UNPKG

@chemistry/mol3dview

Version:
14 lines (13 loc) 351 B
import { Matrix3x4, Vec3 } from "@chemistry/math"; import { CellAtom } from "./CellAtom"; export declare class Atom { fractional: Vec3; position: Vec3; parent: CellAtom; symetry: Matrix3x4; constructor(parent: CellAtom, symetry: Matrix3x4); /** * Return color of the element */ getColor(): string; }