Change name of library to 'llama'

This commit is contained in:
Brendan Zabarauskas 2012-11-01 15:58:36 +10:00
parent df921a105f
commit afb8bcec4b
3 changed files with 30 additions and 10 deletions

View file

@ -1,4 +1,4 @@
TARGET = omath
TARGET = llama
ROOT_DIR = .

View file

@ -1,15 +1,18 @@
# OMath: a linear algebra library for Rust
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/73/Llama_de_Bolivia_%28pixinn.net%29.jpg/399px-Llama_de_Bolivia_%28pixinn.net%29.jpg" alt="Generic llama, courtesy of WikiMedia" title="Llama" align="left" width="300px" />
OMath (Odyssey Math) is linear algebra I've been working on to help teach myself 3D mathematics.
# Llama
Llama is generic linear algebra library for Rust. There is still much to do, unittests to write, bugs to fix, and performance enhancements to make. Help is much appreaciated, so don't hesite to send me a pull request!
## Todo:
- Matrix Inversion: ugh
- Matrix inversion
- Matrix rotation
- Euler and Axial rotations
- Euler and axial rotations
- Implement trait inheritence when it lands on rust/master
- Performance improvements
- Increase unittest coverage
- Publish on Cargo Central
## Disclaimer:
I'm new to Rust and a novice at linear algebra, so I may have made mistake, and I may not have done things in the most efficient way. So use this at your own risk!
~B☼

View file

@ -1,7 +1,24 @@
#[link(name = "omath",
/*
/|___
/ .__/
| |
________/ \
/ \
/| | \
| | |
/ /////| |
| | | | || _ _ _
|| || ||(_||||(_|
*/
#[link(name = "llama",
vers = "0.1",
author = "Brendan Zabarauskas",
url = "https://github.com/bjz/omath-rs")];
url = "https://github.com/bjz/llama-rs")];
#[comment = "A generic linear algebra library."];
#[license = "APL2"];