Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
Sam Hocevar b718c70dce Try to rework README.md layout. pirms 4 gadiem
include/lol Add C++11 iterators to narray class. pirms 4 gadiem
legacy Rename arraynd to old_arraynd and create new lol::narray implementation. pirms 4 gadiem
.gitattributes build: enforce Unix line endings for autotools files. pirms 4 gadiem
.gitignore Start working on the header-only part of the framework. pirms 4 gadiem
.gitmodules Add “merge” and “upstream” entries for submodules. pirms 4 gadiem
COPYING build: fix the WTFPL site URL in all code comments. pirms 12 gadiem
README.md Try to rework README.md layout. pirms 4 gadiem
TODO.md Add <lol/file> to easily read and write files. pirms 4 gadiem

README.md

About

The header-only part of the Lol Engine framework.

Sytem headers

header description examples
<lol/cli> command-line parsing (imported from cliutils/cli11)
<lol/dialogs> portable file dialogs (imported from samhocevar/portable-file-dialogs)
<lol/file> file reading utilities
<lol/msg> simple message logging
<lol/thread> threading and timers
<lol/unit_test> unit test framework
<lol/utils> various utilities: environment variables, string formatting, std::map and std::vector extensions…

Containers

header description examples
<lol/narray> n-dimensional dynamic array containers lol::narray<T, dimensions>
lol::array2d<T> and lol::array3d<T>
lol::narray_view<T, dimensions>
lol::array2d_view<T> and lol::array3d_view<T>

Text utilities

header description examples
<lol/pegtl> the PEGTL parsing library (imported from taocpp/pegtl)
<lol/algo/suffix_array> suffix array library (imported from storm-ptr/step)

Graphics

header description examples
<lol/color> colorspace conversions (RGB, sRGB, HSV…)
<lol/image> image loading, saving, and processing

Math

header description examples
<lol/bigint> big integer calculations
<lol/half> half-precision (16-bit) floating point numbers
<lol/math> math constants, functions, random number generators, polynomials
<lol/noise> Perlin and simplex noise
<lol/real> arbitrary precision floating point numbers
<lol/transform> quaternion, matrix and SQT transformation utilities
<lol/vector> GLSL-compatible vector classes