“That wheelchair is classic.”

Trespassing - Preview & Install

Character Masterlist #001
Live Preview // Download
Here are some tutorials I linked to if you need help installing pages but if you have any questions just ask me.
This masterlist was made with the original character graphics in mind. So the image size is 245px with no predetermined height. Your images will need to have a set height if you don’t want the rows to run out of line.
In the Pastebin file, I have included one set of codes which you can just copy and paste everytime you want to add a new character. You literally just replace (or add/remove) all the relevant information. If you need more help, just ask.
- The image size should be 245px in width.
- Fonts used: Vollkorn (body text), Montserrat (headings/links text)
- Main Background Colour: #DDDDDD
- Bio Background Colour: #033649
- Navigation Links Background Colour: #036564
- Link Colour: #E8DDCB
- Link Hover Colour: #036564
- Profile Details Background: #000000 (hover over image to display)
- Inside Scrollbar Border: #033649

THEME PACK 03;
- THEME02REVAMPED → download 01 / download 02 (original)
- THEME03REVAMPED → download 01 / download 02 (original)
- THEME 17 (NEW) → download 01 / download 02 / live preview
- Rules & Guidelines • How to Install • How to Create a Page
Note: There is no difference between the first and second downloads. The HTML is just uploaded onto two different sites because not everyone can access Pastebin. Feel free to ask me anything, but please read the FAQ first. Best viewed on Google Chrome and Firefox.

Theme 3: Depths of Tartarus ft. Will Graham and Hannibal Lecter
peterparkre’s third theme!
This theme would be great for OTPs. But, we have a free world, so it’s all up to you!
Features:
- 2 sidebar images
- 4 custom links
- A reblog button straight from a post
- Hover over post to reveal the tags as tags can be clutter
- Hover sidebar for links
- Different title other than the one in the tab
Note:
- Keep everything short. It would look neater.
- The title in the sidebar SHOULD BE 3 WORDS OR LESS. It’ll ruin everything if you make it 4 or more!
Rules:
- You have to reblog/like this post.
- Do not use as base code.
- Do not claim as yours.
- Do not copy.
- Do not take off the credit!
Enjoy! Feel free to message me. Either questions about the theme or about your problems in life. You’ll win a friend (me)!
“On the way to draw a Torus programmatically.”
/* Draw a torus */
static void torus(int numc, int numt)
{
int i, j, k;
double s, t, x, y, z, twopi;
twopi = 2 * PI_;
for (i = 0; i < numc; i++) {
glBegin(GL_QUAD_STRIP);
for (j = 0; j <= numt; j++) {
for (k = 1; k >= 0; k--) {
s = (i + k) % numc + 0.5;
t = j % numt;
x = (1+.1*cos(s*twopi/numc))*cos(t*twopi/numt);
y = (1+.1*cos(s*twopi/numc))*sin(t*twopi/numt);
z = .1 * sin(s * twopi / numc);
glVertex3f(x, y, z);
}
}
glEnd();
}
}