--- DarthVader/OrbitalInfo/src/OrbitalInfo.cpp 2006/11/30 15:46:45 1.6 +++ DarthVader/OrbitalInfo/src/OrbitalInfo.cpp 2007/03/15 12:42:47 1.7 @@ -37,14 +37,14 @@ q3 = -1000.; // Euler angles (nadir reference frame) - theta = -1000.; - phi = -1000.; - etha = -1000.; +// theta = -1000.; +// phi = -1000.; +// etha = -1000.; // Euler angles (local field reference frame) - thetamag = -1000.; - phimag = -1000.; - ethamag = -1000.; +// thetamag = -1000.; +// phimag = -1000.; +// ethamag = -1000.; std::fill_n(goodAttitude, 5, 0); } @@ -87,14 +87,14 @@ q3 = -1000.; // Euler angles (nadir reference frame) - theta = -1000.; - phi = -1000.; - etha = -1000.; + // theta = -1000.; + // phi = -1000.; + // etha = -1000.; // Euler angles (local field reference frame) - thetamag = -1000.; - phimag = -1000.; - ethamag = -1000.; + //thetamag = -1000.; + // phimag = -1000.; + //ethamag = -1000.; std::fill_n(goodAttitude, 5, 0); } @@ -139,14 +139,14 @@ l2->q3 = q3; // Euler angles (nadir reference frame) - l2->theta = theta; - l2->phi = phi; - l2->etha = etha; + // l2->theta = theta; + // l2->phi = phi; + // l2->etha = etha; // Euler angles (local field reference frame) - l2->thetamag = thetamag; - l2->phimag = phimag; - l2->ethamag = ethamag; + // l2->thetamag = thetamag; + // l2->phimag = phimag; + // l2->ethamag = ethamag; memcpy(l2->goodAttitude, goodAttitude, sizeof(goodAttitude)); } @@ -188,14 +188,14 @@ q3 = l2->q3; // Euler angles (nadir reference frame) - theta = l2->theta; - phi = l2->phi; - etha = l2->etha; + //theta = l2->theta; + //phi = l2->phi; + //etha = l2->etha; // Euler angles (local field reference frame) - thetamag = l2->thetamag; - phimag = l2->phimag; - ethamag = l2->ethamag; + //thetamag = l2->thetamag; + //phimag = l2->phimag; + //ethamag = l2->ethamag; memcpy(goodAttitude, l2->goodAttitude, sizeof(l2->goodAttitude)); }