@chemistry/mol3dview
Version:
Crystal Structure Viewer
14 lines (13 loc) • 351 B
TypeScript
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;
}