C++ code references for FET:
-
Qt Documentation:
http://qt.nokia.com/doc/.
-
A tutorial on pointers and arrays in C, by Ted Jensen, Chapter 9: Pointers and Dynamic Allocation of Memory:
http://pweb.netcom.com/~tjensen/ptr/.
I used the idea of contiguous memory allocation into the dynamic array. I used the idea in the file src/engine/matrix.h.
-
C++ FAQ LITE, by Marshall Cline, Section [13] - Operator overloading, Article [13.12]:
http://parashift.com/c++-faq-lite/.
I used the recommendation to add the () operator for a dynamically allocated matrix, which is not necessarily slower. I used the idea in the file src/engine/matrix.h.