Exemplo n.º 1
0
    /* Unpack a split double with units of semicircles */
 double PackedNavBits::asDoubleSemiCircles(const unsigned startBits[],
                                           const unsigned numBits[],
                                           const unsigned len,
                                           const int power2) const
 {
    double drad = asSignedDouble( startBits, numBits, len, power2);
    return (drad*PI);
 }      
Exemplo n.º 2
0
 double PackedNavBits::asDoubleSemiCircles(const int startBits, const int numBits, 
                                           const int power2) const
 {
    double drad = asSignedDouble( startBits, numBits, power2);
    return (drad*PI);
 };