Update README.md to reflect item name changes
There were some outdated names presented in the readme. Fixes #128.
This commit is contained in:
parent
f514fb2883
commit
c5b65ea93d
1 changed files with 7 additions and 7 deletions
14
README.md
14
README.md
|
@ -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`
|
||||||
|
|
Loading…
Reference in a new issue