diff --git a/Cargo.toml b/Cargo.toml index e19c9f3..8182ee9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,9 +16,9 @@ authors = ["Brendan Zabarauskas ", license = "Apache-2.0" description = "A linear algebra and mathematics library for computer graphics." -documentation = "http://bjz.github.io/cgmath" -homepage = "https://github.com/bjz/cgmath" -repository = "https://github.com/bjz/cgmath" +documentation = "http://brendanzab.github.io/cgmath" +homepage = "https://github.com/brendanzab/cgmath" +repository = "https://github.com/brendanzab/cgmath" readme = "README.md" keywords = ["gamedev", "math", "matrix", "vector", "quaternion"] diff --git a/README.md b/README.md index 3c20c6c..f593dc3 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # cgmath-rs -[![Build Status](https://travis-ci.org/bjz/cgmath.svg?branch=master)](https://travis-ci.org/bjz/cgmath) +[![Build Status](https://travis-ci.org/brendanzab/cgmath.svg?branch=master)](https://travis-ci.org/brendanzab/cgmath) [![Version](https://img.shields.io/crates/v/cgmath.svg)](https://crates.io/crates/cgmath) -[![License](https://img.shields.io/crates/l/cgmath.svg)](https://github.com/bjz/cgmath/blob/master/LICENSE) +[![License](https://img.shields.io/crates/l/cgmath.svg)](https://github.com/brendanzab/cgmath/blob/master/LICENSE) [![Downloads](https://img.shields.io/crates/d/cgmath.svg)](https://crates.io/crates/cgmath) [Documentation](http://brendanzab.github.io/cgmath/) @@ -29,7 +29,7 @@ pull request with a fix. cgmath interprets its vectors as column matrices (also known as "column vectors"), meaning when transforming a vector with a matrix, the matrix goes -on the left. This is reflected in the fact that cgmath implements the +on the left. This is reflected in the fact that cgmath implements the multiplication operator for Matrix * Vector, but not Vector * Matrix. ## Limitations