2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
3 * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
11 * Jalview is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
28 Color startCol = Color.lightGray;
30 Color endCol = Color.lightGray;
36 public Bond(float[] start, float[] end, Atom at1, Atom at2)
40 this.startCol = at1.color;
41 this.endCol = at2.color;
47 * public Bond(Bond bond) { this.start = new float[3];
49 * this.start[0] = bond.start[0]; this.start[1] = bond.start[1]; this.start[2]
52 * this.end = new float[3];
54 * this.end[0] = bond.end[0]; this.end[1] = bond.end[1]; this.end[2] =
57 * this.startCol = bond.startCol; this.endCol = bond.endCol; }
59 * public float length() { float len = ((end[0] - start[0]) * (end[0] -
60 * start[0])) + ((end[1] - start[1]) * (end[1] - start[1])) + ((end[2] -
61 * start[2]) * (end[2] - start[2]));
63 * len = (float) (Math.sqrt(len));
68 public void translate(float x, float y, float z)
70 start[0] = (start[0] + x);
71 end[0] = (end[0] + x);
73 start[1] = (start[1] + y);
74 end[1] = (end[1] + y);
76 start[2] = (start[2] + z);
77 end[2] = (end[2] + z);