Rename project to lm-rs
Yes, I think this a little more sensible… :)
This commit is contained in:
parent
35058611f3
commit
c453c9bfea
3 changed files with 12 additions and 27 deletions
10
Makefile
10
Makefile
|
@ -1,4 +1,4 @@
|
|||
TARGET = llama
|
||||
TARGET = lm
|
||||
|
||||
ROOT_DIR = .
|
||||
|
||||
|
@ -12,18 +12,18 @@ TEST_BUILD_DIR = $(ROOT_DIR)/test
|
|||
.PHONY: test
|
||||
|
||||
$(TARGET):
|
||||
@echo "building $(TARGET)"
|
||||
@echo "Building $(TARGET)..."
|
||||
@mkdir -p $(BUILD_DIR)
|
||||
@rustc $(SRC_DIR)/$(SRC_CRATE) --out-dir=$(BUILD_DIR)
|
||||
@echo "Success! \o/"
|
||||
@echo "Success"
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
test:
|
||||
@echo "building tests"
|
||||
@echo "Building unit tests for $(TARGET)..."
|
||||
@mkdir -p $(TEST_BUILD_DIR)
|
||||
@rustc $(SRC_DIR)/$(SRC_CRATE) --test --out-dir=$(TEST_BUILD_DIR)
|
||||
@echo "Success! \o/"
|
||||
@echo "Success"
|
||||
@$(TEST_BUILD_DIR)/$(TARGET)
|
||||
|
||||
clean:
|
||||
|
|
10
README.md
10
README.md
|
@ -1,15 +1,17 @@
|
|||
# Llama
|
||||
# lm-rs
|
||||
|
||||
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!
|
||||
lm-rs is generic linear algebra library for Rust. There is still much to do, unit tests to write, bugs to fix, and performance enhancements to make. Help is much appreciated, so please don't hesitate to send me a pull request.
|
||||
|
||||
## Todo:
|
||||
|
||||
- Matrix inversion
|
||||
- Matrix rotation
|
||||
- Euler and axial rotations
|
||||
- Implement trait inheritence when it lands on rust/master
|
||||
- Implement trait inheritance (dependant on rust/master)
|
||||
- Make use of static functions for constants and constructors (dependant on rust/master)
|
||||
- Performance improvements
|
||||
- Increase unittest coverage
|
||||
- Increase unit test coverage
|
||||
- Improve documentation
|
||||
- Publish on Cargo Central
|
||||
|
||||
|
||||
|
|
|
@ -1,21 +1,4 @@
|
|||
/*
|
||||
|
||||
|
||||
/|___
|
||||
/ .__/
|
||||
| |
|
||||
________/ \
|
||||
/ \
|
||||
/| | \
|
||||
| | |
|
||||
/ /////| |
|
||||
| | | | || _ _ _
|
||||
|| || ||(_||||(_|
|
||||
|
||||
|
||||
*/
|
||||
|
||||
#[link(name = "llama",
|
||||
#[link(name = "lm",
|
||||
vers = "0.1",
|
||||
author = "Brendan Zabarauskas",
|
||||
url = "https://github.com/bjz/llama-rs")];
|
Loading…
Reference in a new issue