Quote Originally Posted by Charismatik View Post
Are INTPs capable of falling in love, or at least something that they would feel comfortable identifying as "love"?
Bailout = 64;
for(iX=0;iX<MaxX;iX++)
{
for(iY=0;iY<MaxY;iY++)
{
zReal = (float)(iX - CenterXJ) / ZoomJ;
zImag = (float)(iY - CenterYJ) / ZoomJ;
unsigned int iter = 0;
squared = 0;
while(iter <= MaxIterJ && squared < Bailout)
{
zReal = exp(zReal);
zImagv = zReal;
zImagv *= sin(zImag);
zImagv += cImag;
zReal *= cos(zImag);
zReal += cReal;
zImag = zImagv;
PowR = zReal;
PowR *= zReal;
PowI = zImag;
PowI *= zImag;
squared = PowR;
squared += PowI;
iter++;
}
if (squared >= Bailout)
{
printf ("Yes");
}
else
{
printf ("No");
}
}
}
}