A single atom from an SDF atom block.
export interface MoleculeAtom { /** Element symbol as written in the record, e.g. `'C'` or `'Cl'`. */ symbol: string; /** Cartesian coordinates in angstroms. `z` is 0 throughout a 2D record. */ x: number; y: number; z: number;} Copy
export interface MoleculeAtom { /** Element symbol as written in the record, e.g. `'C'` or `'Cl'`. */ symbol: string; /** Cartesian coordinates in angstroms. `z` is 0 throughout a 2D record. */ x: number; y: number; z: number;}
Element symbol as written in the record, e.g. 'C' or 'Cl'.
'C'
'Cl'
Cartesian coordinates in angstroms. z is 0 throughout a 2D record.
z
A single atom from an SDF atom block.
Source