Examples of AtomImpl


Examples of org.biojava.bio.structure.AtomImpl

    ProjectedAtomIterator(Structure structure) {
      // logger.info("new ProjectedAtomIterator");
      iter = new org.biojava.bio.structure.AtomIterator(structure);
      pos = 0;
      atom = new AtomImpl();
      this.structure = structure;

    }
View Full Code Here

Examples of org.biojava.bio.structure.AtomImpl

  /**
   * initalizes the display
   */
  private void initJmolDisplay() {
    Atom a = new AtomImpl();
    a.setName("CA");
    a.setFullName(" CA ");
    a.setCoords(new double[] { 47.866, 28.415, 2.952 });

    Group g = new AminoAcidImpl();
    g.setPDBCode("9");
    try {
      g.setPDBName("GLY");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.