OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MandelbrotThread
(Results
1 - 2
of
2
) sorted by null
/external/eigen/demos/mandelbrot/
mandelbrot.h
20
class
MandelbrotThread
: public QThread
29
MandelbrotThread
(MandelbrotWidget *w, int i) : widget(w), id(i) {}
38
friend class
MandelbrotThread
;
45
MandelbrotThread
**threads;
60
threads = new
MandelbrotThread
*[threadcount];
61
for(int th = 0; th < threadcount; th++) threads[th] = new
MandelbrotThread
(this, th);
mandelbrot.cpp
31
template<typename Real> void
MandelbrotThread
::render(int img_width, int img_height)
111
void
MandelbrotThread
::run()
Completed in 222 milliseconds