Trying to fix markdown in readme

This commit is contained in:
King_DuckZ 2018-07-28 14:28:21 +01:00
parent 8f179919f5
commit 7225298698
1 changed files with 1 additions and 1 deletions

View File

@ -185,6 +185,6 @@ In this example we will adapt `std::array<float, N>` and `Ogre::VectorN`. In you
typedef Vec<Ogre::Vector2> ovec2;
## Limitations ##
* [X] ~~4D vectors are not currently supported~~ Implemented at commit a81c4c1077eef5f2dafe7514b534e79f31845bb7
* [x] ~~4D vectors are not currently supported~~ Implemented at commit a81c4c1077eef5f2dafe7514b534e79f31845bb7
* [ ] Read-only vectors are not supported (not sure if such a thing is really needed)
* [ ] I haven't profiled this code yet (please be patient), but while I don't want it to slow your program down, I know it won't be comparable to any super optimized vector library. This is not a vector library to begin with. Supporting SSE would be nice, but there is no guarantee the wrapped type has been created with SSE and optimizations in mind. Writing functions for both cases (SIMD-ready structures and scalar structures) would essentially require implementing every function twice. I think it's just a better idea to take an already made vector library and use vectorwrapper as it was intended - to wrap the vector classes that come from that library.