Completed the next exercise in the ZBrush practical guide.
Author: tim
ZBrush – Warrior Part 2a
Completed the next exercise in the ZBrush practical guide.
ZBrush – Warrior Part 1
Completed the next exercise in the ZBrush practical guide.
ZBrush Example 11 – ZSphere Insertions
Completed exercise 11 in the ZBrush practical guide.
ZBrush Example 10 – Phone Part 3
Completed exercise 10 in the ZBrush practical guide.
ZBrush Example 9 – Phone Part 2
Completed exercise 9 in the ZBrush practical guide.
ZBrush Example 8 – Phone Part 1
Completed exercise 8 in the ZBrush practical guide.
ZBrush Example 7 – Z Logo – Creases
Completed exercise 7 in the ZBrush practical guide.
ZBrush Example 6 – Not So Primative
Completed exercise 6 in the ZBrush practical guide.
ZBrush Example 5 – Bamboo Part 4
Completed exercise 4a in the ZBrush practical guide.
ZBrush Example 4 – Bamboo Part 3b
Completed exercise 3b in the ZBrush practical guide.
ZBrush Example 4 – Bamboo Part 3
Completed exercise 3 in the ZBrush practical guide.
ZBrush Example 3 – Bamboo Part 2
Completed exercise 3 in the ZBrush practical guide.
ZBrush Example 2 – Bamboo Part 1
Completed exercise 2 in the ZBrush practical guide.
ZBrush Example 1 – Idol
Completed exercise 1 in the ZBrush practical guide.
Show Reel
Click thumbnails to view each of my older project videos or check the [Demo Page] for more demos. Check out the [Sector13] section for the most recent cool stuff.
You will need Adobe Flash Player 8.0+ to view these videos.
[starmap3d.avi] (4.4M) /
[Demo & Source] (404k)
[nehe_contest.avi] (4.2M) /
[Demo & Source] (817k) / [Details]
[gdc_contest.avi] (2.6M) /
[Demo & Source] (519k)
[3danimation.avi] (2.4M) /
[Source] (962k)
[tagml.avi] (3.8M) /
[Source] (HTTP)
Steinway in Bellevue Key Center
Still getting the hang of using Dr. DivX for cropping video and editing audio. I was able to record a little [piano improv] while playing next to the Starbucks in the Key Center in Bellevue, WA.
Making Fish #3 with Zbrush
This weekend I figured out how to create and encode DivX video files. I configured WinXP Pro to use a dual video display and pipe a clone of the screen via SVIDEO. I used a SVIDEO cable to pipe the SVIDEO out directly into the SVIDEO in and used Dr. DivX Live Capture to record the video feed. Then I opened up the recorded AVI in Dr. DivX again and reduced the video size from 45M to about 8M, sacrificing some quality. I recorded audio using a microphone, in this version it just sounds like mumbling. I’ll work the audio part out later. With that said, take a look at the [making of fish #3]. You’ll need to DivX codec from [divx.com].
[fish3.avi] (7.9M)
UTF8 Encoding with C# .NET
Occasionally when working with the web you may need to UTF8 encode something you are working on. Here’s a little snippet that shows how to UTF8 encode in C#.
String script = "A string that I need to UTF8 Encode!";
if(script == null || script.Length == 0)
return "";
System.Text.UTF8Encoding newUTF8Encoding = new System.Text.UTF8Encoding();
System.Text.Encoder newEncoder = newUTF8Encoding.GetEncoder();
Int32 encodingLength =
newEncoder.GetByteCount(script.ToCharArray(), 0, script.Length, true);
Byte[] encodedScript = new Byte[ encodingLength ];
newEncoder.GetBytes(script.ToCharArray(), 0, script.Length, encodedScript, 0, true);
String uft8Script = "";
foreach(Byte b in encodedScript)
{
uft8Script += "&#"+(Int32)b+";";
}
Diving into Avalon March 2005 Preview
[MS Channel 9] gave an excellent presentation of this months preview of the Avalon CTP. After taking [a more indepth look at the team], I was able to gather enough information to download the CTP. I plan to immediately take a look at the sample code and jump right in. The installation process was simple. Now on to trying a program referenced in the videos called [Zam 3D ™].
Check out the archives
Mono 1.1.6 on Mandriva 2005 LE
Installing the latest version of Mono (mono-1.1.6-3mdk.i586) was as easy as “urpmi mono”.
[root@athelo tgraupmann]# urpmi mono
To satisfy dependencies, the following 4 packages are going to be installed (28 MB):
libgdiplus0-1.1.5-1mdk.i586
libmono-runtime-1.1.6-3mdk.i586
libmono0-1.1.6-3mdk.i586
mono-1.1.6-3mdk.i586
Is this OK? (Y/n) y
See [this story] for more detailed information.
Easy Urpmi
[Easy Urpmi] is the best way to install packages on Mandrake Linux/Mandiva Linux. Running ” urpmi ” as root in the console automatically finds and installs all the dependencies for a particular set of packages. It already saves me hours of time by getting and installing all the binary packages that I need in an instant.
Mandrive 2005 (Mandrake 10.2) and a parallel port scanner
Tonight I installed Mandrake Linux 2005 LE (the product of the Mandrake Linux and Connectiva Linux merger). The process went smoothly.
I then got my Mustek 600 III EP Plus parallel scanner working by following [these steps].
Browse Linux Partitions from Windows
Need to browse Linux partitions from Linux? Try [Explore2FS]