obroty

// test obrotów

#include <iostream>
using namespace std;
#include „prob-16-kern.h”
#include „prob-16-bope.h”

extern int currentpoint;
int pointdata;
int sizeofpoint = 4;

int main()
{
int A;

tx(1); tx(2); tx(4); tx(8); tx(16); tx(32);
A = currentpoint;

t(gtrans(3));                               // 000011
t(1);                                             // 000001
t(gtrans(6));                           // 000110
t(2);                                          // 000010
t(gtrans(12));                              // 001100
t(4);                                                  // 000100
t(gtrans(24));                                  // 011000
t(8);                                                    // 001000

cout << ” currentpoint ” << currentpoint << ” A = ” << A << ” \n „;

o();
}