Skip to content

Commit

Permalink
total rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitino committed Mar 4, 2015
1 parent 99f4827 commit ce4a4a9
Show file tree
Hide file tree
Showing 6 changed files with 594 additions and 334 deletions.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
CC = g++
FLAGS = -std=c++11 -O3

all: testit fasttestit

testit: main.cpp dualquat.hpp
$(CC) $(FLAGS) main.cpp -o testit
time ./testit

fasttestit: main.cpp dualquat.hpp
$(CC) $(FLAGS) main.cpp -o fasttestit -march=native -Ofast
time ./fasttestit

clean:
rm -rf testit fasttestit
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
dualQuaternion
==========

out of the box quaternions for c++
out of the box quaternions for C++

o quaternions with logarithm and exponential map
o dual quaternions with logarithm and exponential map
- quaternions with logarithm and exponential map
- dual quaternions with logarithm and exponential map
- metrics on SO(3) and SE(3) using logarithms
- build with make
Loading

0 comments on commit ce4a4a9

Please sign in to comment.