X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2FMCview%2FMCMatrix.java;h=1dbec226fa26060fdfb7348bc23bb9171f6a549d;hb=312a01c56639fe2d5a94a7918e6968955533afc5;hp=2effba666e674aa03434a4940c38df9d29411993;hpb=588042b69abf8e60bcc950b24c283933c7dd422f;p=jalview.git diff --git a/src/MCview/MCMatrix.java b/src/MCview/MCMatrix.java index 2effba6..1dbec22 100755 --- a/src/MCview/MCMatrix.java +++ b/src/MCview/MCMatrix.java @@ -1,6 +1,6 @@ /* * Jalview - A Sequence Alignment Editor and Viewer -* Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle +* Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -34,15 +34,6 @@ public class MCMatrix { matrix[i][j] = value; } - public void print() { - System.out.println(matrix[0][0] + " " + matrix[0][1] + " " + - matrix[0][2]); - System.out.println(matrix[1][0] + " " + matrix[1][1] + " " + - matrix[1][2]); - System.out.println(matrix[2][0] + " " + matrix[2][1] + " " + - matrix[2][2]); - } - public void rotatex(float degrees) { mycos = (float) (Math.cos(degrees * myconst)); mysin = (float) (Math.sin(degrees * myconst));