Merge pull request #133 from aepsil0n/readme_update

Update README.md to reflect item name changes
This commit is contained in:
Brendan Zabarauskas 2014-10-23 22:05:55 +11:00
commit d2cd97d694

View file

@ -6,17 +6,17 @@ A linear algebra and mathematics library for computer graphics.
The library provides: The library provides:
- vectors: `Vec2`, `Vec3`, `Vec4` - vectors: `Vector2`, `Vector3`, `Vector4`
- square matrices: `Mat2`, `Mat3`, `Mat4` - square matrices: `Matrix2`, `Matrix3`, `Matrix4`
- a quaternion type: `Quat` - a quaternion type: `Quaternion`
- rotation matrices: `Rot2`, `Rot3` - rotation matrices: `Basis2`, `Basis3`
- angle units: `Rad`, `Deg` - angle units: `Rad`, `Deg`
- points: `Point2`, `Point3` - points: `Point2`, `Point3`
- rays: `Ray2`, `Ray3` - a generic ray: `Ray`
- a plane type: `Plane` - a plane type: `Plane`
- perspective projections: `Perspective`, `PerspectiveFov`, `Ortho` - perspective projections: `Perspective`, `PerspectiveFov`, `Ortho`
- a view frustum: `Frustrum` - a view frustum: `Frustum`
- spatial transformations: `AffineMatrix3`, `Transform3D` - spatial transformations: `AffineMatrix3`, `Transform3`
- axis-aligned bounding boxes: `Aabb2`, `Aabb3` - axis-aligned bounding boxes: `Aabb2`, `Aabb3`
- oriented bounding boxes: `Obb2`, `Obb3` - oriented bounding boxes: `Obb2`, `Obb3`
- collision primitives: `Sphere`, `Cylinder` - collision primitives: `Sphere`, `Cylinder`