Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from ase.build.rotate import minimize_rotation_and_translation
2from ase.build.surface import (
3 add_adsorbate, add_vacuum,
4 bcc100, bcc110, bcc111,
5 diamond100, diamond111,
6 fcc100, fcc110, fcc111, fcc211,
7 hcp0001, hcp10m10, mx2, graphene)
8from ase.build.bulk import bulk
9from ase.build.general_surface import surface
10from ase.build.molecule import molecule
11from ase.build.root import (hcp0001_root, fcc111_root, bcc111_root,
12 root_surface, root_surface_analysis)
13from ase.build.tube import nanotube
14from ase.build.ribbon import graphene_nanoribbon
15from ase.build.tools import (cut, stack, sort, minimize_tilt, niggli_reduce,
16 rotate)
17from ase.build.connected import (connected_atoms, connected_indices,
18 separate, split_bond)
19from ase.build.supercells import (
20 get_deviation_from_optimal_cell_shape,
21 find_optimal_cell_shape,
22 make_supercell)
24__all__ = ['minimize_rotation_and_translation',
25 'add_adsorbate', 'add_vacuum',
26 'bcc100', 'bcc110', 'bcc111',
27 'diamond100', 'diamond111',
28 'fcc100', 'fcc110', 'fcc111', 'fcc211',
29 'hcp0001', 'hcp10m10', 'mx2', 'graphene',
30 'bulk', 'surface', 'molecule',
31 'hcp0001_root', 'fcc111_root', 'bcc111_root',
32 'root_surface', 'root_surface_analysis',
33 'nanotube', 'graphene_nanoribbon',
34 'cut', 'stack', 'sort', 'minimize_tilt', 'niggli_reduce',
35 'rotate',
36 'connected_atoms', 'connected_indices',
37 'separate', 'split_bond',
38 'get_deviation_from_optimal_cell_shape',
39 'find_optimal_cell_shape',
40 'find_optimal_cell_shape_pure_python',
41 'make_supercell']