bounce:
:yruam:
Nfs I know we be joking about guarding and scoring on league players in here but I deadass 100% think I could stop Benjamin Simmons from scoring on 3 out of 5 possessions
Nah fr
:twisted:
me and @new
img:hover {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
img:hover {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
img:hover {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
img:hover {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
You know CSS?
:Flip
void flip_horizontal( uint8_t array[], unsigned int cols, unsigned int rows ) {
unsigned int left = 0;
unsigned int right = cols;
for(int r = 0; r < rows; r++){
while(left != right && right > left){
int temp = array[r * cols + left];
array[(r * cols) + left] = array[(r * cols) + cols - right];
array[(r * cols) + cols - right] = temp;
right--;
left++;
}
}