background preloader

Tips

Facebook Twitter

Customization

Blender 3D: Noob to Pro/Cool Things - Wikibooks, collection of open-content textbooks. Cool things in blender that aren't that obvious. Useful tips and tricks in Blender. Attribution[edit] Many of The Following Tips and Tricks have been contributed by members of the CGsociety.org, a Public Society for Digital Artists. The tips have been extracted from a CGsociety thread. They have been roughly edited to improve readability. File Browser Functions[edit] Delete, Move, Rename, and Make Directory[edit] When you are inside a file browser for loading or saving something and you want to create a new directory, just add the name to the path on top of the window and confirm 'Makedir'. you can also delete(x), move(m), or rename(n) a file. you can do action on multiple files by seling with right click Preview images when loading them as a texture[edit] Whenever you are loading images as a texture, you can hold down Ctrl while clicking on the 'load' Trick for Creating Quick File Revisions[edit] After you have saved a blend file or an image you can then save it in progression that is: Control O.

Jackal - workshop index. CG Explorer: CGI Animation and Visual Effects Resources. Crashproof C++ Troubleshooters.Com Presents Copyright (C) 1997, 2001 by Steve Litt char ychFname[13]; strcpy(ychFname, "c:\\mydir\\setup.set"); cout << "What are the odds that I will see this message? \n"; [ Code Corner | Troubleshooters.Com | Email Steve Litt | Copyright Notice ] Under construction would be an understatement for this page. Const is your most powerful anti-crash weapon. Const char *add2strings(const char *sz1, const char *sz2); Such a declaration guarantee's that no matter what wierd things go on within the function, it can't harm the application programmer's two strings sz1 and sz2. Furthermore, the declaration of the return pointer as const means that the application programmer can't "reach inside" the function to corrupt its scope. Char *pchName = add2strings("Philbinoff", "James");strcat(pchName, " is the name of the first author of the three books");cout << "I just corrupted an internal variable of add2strings.

Char *pchName = add2strings("Philbinoff", "James"); Avoid buffer overrun.