|
void AiThread::makeZone |
( |
double |
x, |
|
|
double |
y, |
|
|
double |
zoneWidth, |
|
|
double |
zoneHeight, |
|
|
int |
imageWidth, |
|
|
int |
imageHeight, |
|
|
int |
startPoint, |
|
|
int |
increment, |
|
|
int |
iteration, |
|
|
double |
zoom = 1. , |
|
|
double |
viewx = .0 , |
|
|
double |
viewy = .0 | |
|
) |
| | |
making and creating a new complex zone for current thread
- Parameters:
-
| x | : min X point in complex zone ( default = .0 ) |
| y | : min Y point in complex zone ( default = .0 ) |
| zoneWidth | : a zone width ( default = .0 ) |
| zoneHeight | : a zone height ( default = .0 ) |
| startPoint | : a image start point for fractal generation ( default = 0 ) |
| increment | : increment next image point by "defined number" ( default = 0 ) |
| iteration | : iteration numbers for generation ( default = 0 ) |
| zoom | : number of zoom view ( default = 1.0 ) |
| viewx | : number of zoom view x ( default = 0.0 ) |
| viewy | : number of zoom view y ( default = 0.0 ) |
Definition at line 51 of file aithread.cpp.
00056 {
00057
00058 m_zone = AiZone(this ,
00059 x, y ,
00060 zoneWidth, zoneHeight ,
00061 imageWidth, imageHeight ,
00062 startPoint, increment ,
00063 iteration,
00064 zoom, viewx, viewy
00065 );
00066 }
|