Package pyxsd :: Package transforms :: Module bravaisLattice
[hide private]
[frames] | no frames]

Source Code for Module pyxsd.transforms.bravaisLattice

1 -class BravaisLattice (object):
2 """ 3 ============================================ 4 Transform Library: CellSizer: BravaisLattice 5 ============================================ 6 7 :Author: Karl Norby <knorby@uchicago.edu> 8 :Date: Fri, 1 Sept 2006 9 :Category: Computational Materials Science 10 :Description: Class for a bravais lattice 11 :Copyright: pyXSD License 12 13 Included as part of the CellSizer Library 14 """ 15 #======================================================= 16 #
17 - def __init__(self, vectors, basis):
18 19 self.vectors = vectors 20 self.basis = basis
21