示例#1
0
 public IndigoObject addSuperatom(ICollection atoms, String name)
 {
     return(addSuperatom(Indigo.toIntArray(atoms), name));
 }
示例#2
0
 public IndigoObject addDataSGroup(ICollection atoms, ICollection bonds, String description, String data)
 {
     return(addDataSGroup(Indigo.toIntArray(atoms), Indigo.toIntArray(bonds), description, data));
 }
示例#3
0
 public void removeAtoms(ICollection vertices)
 {
     removeAtoms(Indigo.toIntArray(vertices));
 }
示例#4
0
 public float alignAtoms(ICollection atom_ids, ICollection desired_xyz)
 {
     return(alignAtoms(Indigo.toIntArray(atom_ids), Indigo.toFloatArray(desired_xyz)));
 }
示例#5
0
 public IndigoObject getSubmolecule(ICollection vertices)
 {
     return(getSubmolecule(Indigo.toIntArray(vertices)));
 }