bool3max / bbmp_utils

A native library for dealing with BMP file metadata and image data, written in C11.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fix broken rot90 userspace function

bool3max opened this issue · comments

My initial understanding of in-place square matrix rotation was flawed. Refer here for better understanding.

A better approach for in-place rotation is to transpose the matrix first, and then reverse either the columns or the rows (depending on the rotation direction).

Fixed in commit 13dcf34