Since Doodles 11 has fallen into the Archive Abyss that is Page 2, it's time for its sequel, Doodles 12! Here's some of the doodles made late in the Doodles 11 topic.
just working on a new (newish) character. trying her with glasses. . originally she was topless but I added the shirt and stockings, I like it better this way. the pic on the screen is of her. That is how Apple recommends using a MacBook. using an Apple makes you cooler and cuter, it's scientifically proven.
Attachments
shan-and-mac-nice.jpg (122.14 KiB) Viewed 72191 times
MixedMyth wrote:I like the body. The head seems a little bit at odds with it, though I can't put my finger on why. Still, nice pose!
I think its the face. The head itself seems to be turned at an angle that has the face looking down into the shoulder, instead the face seems to be independent from the face and looking in the wrong direction/angle, if anyone can get what I mean here, with the head angled right and down, and the face angled right and up. Head + face =/= flush, is what I'm trying to say
%A matlab script for making a mandelbrot set graphic, for fun.
disp 'Initializing...';
pixwidth=1600;
maxits=100; %Turns out this can be surprisingly low for low-value renders
%creates a grid
c=ones(floor(0.75*pixwidth),1)*linspace(-2,1,pixwidth) + i*linspace(-1,1,floor(0.75*pixwidth))'*ones(1,pixwidth);
z=zeros(size(c));
its=z;
k=1:(size(c,1)*size(c,2));%a counter for every index of c/z
disp 'Calculating...';
%find trick learned from some other dude's implementation, I forget whose.
for j=1:maxits,
z(k)=z(k).^2+c(k);
k=k(find(abs(z(k))<2)); %filters out ks which have already been pwned
its(k)=its(k)+1;
end
disp 'Rendering...';
image(its);
colormap(bone);
disp 'Finished.';
"From Hells Heart I stab at thee... For hate's sake I spit my last breathe at thee!"
for 20 yrs I've take shit because of this stupid red headed fish, now I take my revenge! I was pissed off for no reason and then I realized that I should stop taking out my anger on others and focus it on the source of all my misery. I took a few liberties in representing myself. I don't look nearly that good. It feels good to symbolically destroy my archenemy.
Attachments
death-to-the-fish!.jpg (145.96 KiB) Viewed 71889 times