Calendar January 28, 2015 00:13

Blogger Blogger

Mixed Animal Bust # 1

Today we had a speed sculpt session at the end of my ZBrush class. The point of this exercise was to make a mixed animal, so I decided to make a lion with horns.

Here is what I have:



I'm going to continue working on this, thanks for reading!

Replies 0 Comments Reply Reply

Calendar January 25, 2015 22:42

Blogger Blogger

Making & Shuffling a Deck of Cards - Homework 2

For this next week's homework, we have to create a simple program where you created a deck of cards and shuffle it for the first part. 

Then we also have to created a way for the person running the code decide how many decks to shuffle at once.

Here is what I made:

#Assignment002_ChristianMunoz.py
#01/25/2014
from random import randint
import math

#make the list of cards
def makeListOfCards(stringOfCards):

    listOfCards = stringOfCards.split()

    return listOfCards

#shuffle code
def shuffleDeck(inputDecks):

    shuffledDeck = []

    for i in range(len(inputDecks)):

        tempInt = randint(0,len(inputDecks) - 1)
        shuffledDeck.append(inputDecks.pop(tempInt))

    return(shuffledDeck)

#main function
def main():
    
    decksToShuffle = eval(input("Enter how many decks you would like to shuffle at once (1-5):  "))

    #This checks to make sure the entry is a valid entry
    if decksToShuffle <= 0 or decksToShuffle > 5:
        print("That is not a valid entry!")
        main()

    #If the entry was valid, then execute code
    else:
        CardSymbols = '''AS AH AD AC
                         KS KH KD KC
                         QS QH QD QC
                         JS JH JD JC
                         10S 10H 10D 10C
                         9S 9H 9D 9C
                         8S 8H 8D 8C
                         7S 7H 7D 7C
                         6S 6H 6D 6C
                         5S 5H 5D 5C
                         4S 4H 4D 4C
                         3S 3H 3D 3C
                         2S 2H 2D 2C'''
        
        listOfCards = makeListOfCards(CardSymbols) * decksToShuffle
        
        print(shuffleDeck(listOfCards))

main()

I still have to make another little program that works almost the same way, but with dice. This is all for now, thanks for reading!

Replies 0 Comments Reply Reply

Calendar January 22, 2015 01:20

Blogger Blogger

Learning Python - Homework 1

So I have actually decided to go back to school and get a degree in Computer Science and hopefully make myself more hire-able. One of my classes this semester is CS 1410, and I will be learning Python for this class.

I have actually taken coding classes in the past and I know my way around Java, JavaScript, and ActionScript. I have also done some stuff on my own on CodeCademy to learn those languages.

Today I turned in my first Python assignment, and I'm really excited for this class. The stuff I will post below isn't complicated at all, but at the end of the semester I will have a full game built on Python.

The assignment was basically to introduce us to Python and learn some basic syntax and make a few conversions with data that the user types on the console. If anyone has some critique, please let me know:

# Assignment001_ChristianMunoz.py
# 01/14/2014

#Function 1 = This function converts Celsius to Fahrenheit


print("This program takes a temperature in Celsius as input and converts it to Fahrenheit")


celsius = eval(input("Please input celsius to be converted:  "))


fahrenheit = 9/5 *  celsius + 32


print("The temperature is ", fahrenheit, " degrees in Fahrenheit.")

print(' ')

#Function 2 = This function converts Fahrenheit to Celsius


print("This program takes a temperature in Fahrenheit as input and converts it to Celsius")


fahrenheit = eval(input("Please input Fahrenheit to be converted:  "))


celsius = (fahrenheit - 32) * 5/9


print("The temperature is ", celsius, " degrees in Celsius.")

print(' ')

#Function 3 = This function converts Radians


print("This program takes an angle in Radians and converts it Degrees")


radians = eval(input("Please input Radians to be converted: "))


degrees = radians * (180 / math.pi)


print("The answer is ", degrees, " in Degrees")

print(' ')

#Function 4 = This function converts Degrees


print("This program takes an angle in Degrees and converts it to Radians")


degrees = eval(input("Plese input degrees to be converted: "))


radians = degrees * (math.pi / 180)


print("The answer is ", radians, " in Radians")

print(' ')

#Function 5 = This function finds two coterminal angles (one + and one -)


print("This program takes an angle in Degrees and finds two coterminal angles (one positive and one negative)")


userInput = eval(input("Please input the angle in Degrees to find coterminal angles: "))


positiveAngle = userInput + 360

negativeAngle = userInput - 360

print("The answers are: ", positiveAngle, " and ", negativeAngle, " in Degrees")

print(' ')

#Function 6 = This function finds a complement and supplement angle


print("This program takes an angle in Degrees and finds the Complement and Supplement angles")


userInput = eval(input("Please input the angle in Degrees to find the complement and supplement angles: "))


if userInput >= 180 or userInput < 0:

    complement = 'IMPOSSIBLE'
    supplement = 'IMPOSSIBLE'

    print("The Complementary angle is ", complement, " and the Supplementary angle is ", supplement, ".")

    print(' ')

elif userInput >= 90:

    complement = 'IMPOSSIBLE'
    supplement = 180 - userInput

    print("The Complementary angle is ", complement, " and the Supplementary angle is ", supplement, " in Degrees.")

    print(' ')

else:

    complement = 90  - userInput
    supplement = 180 - userInput

    print("The Complementary angle is ", complement, " and the Supplementary angle is ", supplement, " in Degrees.")

    print(' ')

That's all for now, thanks for reading!

Replies 0 Comments Reply Reply

Calendar January 20, 2015 23:05

Blogger Blogger

Texture Tuesday - January 20


Here is what I did for today's texture. Since I'm back in school, I didn't have much time to start it earlier, so this was literally like an hour worth of work to make the high poly version of these wood planks for my texture.

I did the base model cubes in Maya since I find it easier to move stuff around in Maya. I also tried to subdivide the model a bit before sending it into ZBrush. This way I could make sure that my quads will be a little more uniform once I start upping the resolution. I did all the sculpting in ZBrush fairly quickly while I was on a class tonight.

I will bake the Normal and AO maps when I get a minute. Then I will try to do a quick Diffuse map in Photoshop. That's all for now, thanks for reading!

Replies 0 Comments Reply Reply

Calendar January 20, 2015 01:23

Blogger Blogger

Drawing - Ninja Girl


Here is some Ninja Girl that I've been working on for a while.

Replies 0 Comments Reply Reply

Calendar January 14, 2015 02:18

Blogger Blogger

Texture Tuesday - January 13



Its Tuesday again (technically its now Wednesday since I'm posting after midnight) and it means another speed texture. This time I decided to do a Sci Fi themed floor texture.

I created the base mesh in Maya and baked out the Normal, AO, & Convexity maps. Everything else was done in Photshop and finally rendered in Marmoset Toolbag (bottom picture).

That's all for now, thanks for reading!

Replies 0 Comments Reply Reply

Calendar January 8, 2015 02:24

Blogger Blogger

Texture Revision for January 6



So I got some feedback that the slabs were too smooth on my Facebook group for the textured I did yesterday. So I went back to Zbrush and added played around more with it.

I have included my revised texture and I also decided to do a render in Marmoset Toolbag 2.

Thanks for reading!

Replies 0 Comments Reply Reply

Calendar January 7, 2015 02:25

Blogger Blogger

Texture Tuesday - January 6



So one of my old professors just started a Facebook group called Texture Tuesday. The idea is to make a quick texture about anything for games.

This is the texture that I made today. I started with the base model in Maya and then took it to Zbrush for the detail. I baked out a Nrmal Map and AO. This was actually a lot of fun to make, and hopefully I'll have time to do one every Tuesday.

That's all for now, thanks for reading!

Replies 0 Comments Reply Reply

Calendar November 20, 2014 00:10

Blogger Blogger

Manga Drawing - Morishita from Love Theory


So this is another character from the same manga that I wrote about the other day, called Love Theory. Her name is Morishita and she is actually a gamer in the that avidly plays Monster Hunter throughout the story.

I will probably do a few more drawings of my favorite characters from the manga. Thanks for reading!

Replies 0 Comments Reply Reply

Calendar November 14, 2014 04:10

Blogger Blogger

Manga Drawing - Saki from Love Theory


So I recently found a new manga that I really like on CrunchyRoll that I really like called Love Theory. I really like most of the characters in the book, but this is the main love interest of the main character, her name is Saki.

Anyways, I really liked her and I decided to do another trace and keep practicing steadying my hands while drawing. Thanks for reading!

Replies 0 Comments Reply Reply

Calendar November 11, 2014 23:32

Blogger Blogger

Anime Drawing - Lida from Rail Wars (Colored)


So the drawing I was working on is finished and i added some color. The point of these exercises are to help me steady my hand when I try to draw something. When working in 3D I can push and pull vertices until it looks good, but when drawing its different. I will soon try to draw something of my own since tracing won't really help me in the long rung.

That's all for now, thanks for reading!

Replies 0 Comments Reply Reply

Calendar November 8, 2014 05:48

Blogger Blogger

Anime Drawing - Lida from Rail Wars

So not too long ago I finished watching an anime called Rail Wars. Its essentially a show a guy that really likes trains and wants to be a train operator/driver one day. One of the girls he meets in his job is the girl above called Lida.

Now I'm not going to go any further into details of the show, but I do have to say that I really like this anime and all the characters in it. I have decided to keep training and trace picture I found of her. I find that tracing is helping me understand the anatomy more every time. I will add color to this here in the next few days post another when I'm done. 

Thanks for reading. 

Replies 0 Comments Reply Reply

Calendar November 4, 2014 13:27

Blogger Blogger

Death's Mask - Pedestal Idea


So after starting this little project to make a replica of Death's Mask from Darksiders 2 I thought to myself that I needed something more than just the mask to make this piece really pop. My idea was to make some kind of pedestal, but I needed something that would make sense to the game and that would look cool. So that's when I came up with the idea above.

I'm going to give some back story to the game for those of you that don't know anything about Darksiders 2. I'm going to be as general as possible to not give away too much of the story for those of you who may care about spoilers.

The game is played from the perspective of one of the four horsemen of the Apocalypse, in this case you play as Death. On the fist game you play as War, but he was tricked into starting the Apocalypse and at the end of the game he is told that he will be punished even if it wasn't his fault.

Darksiders 2 if the story of Death trying to bring back all of humanity so his brother War is sparred. But in order to do so, he has to travel to different worlds in search of a way to revive all the people of the world. But there is a new threat that is slowly destroying all these worlds, its Corruption. This Corruption is everywhere you go, and it manifests itself looking like huge yellow crystals surrounded by black tar.

My idea for the "pedestal" of the mask is to make one of those spikes of Corruption and have Death's mask resting on it. And so far the render above is what I have. This is the first time I've tried doing rock/crystal in ZBrush, and its turning out to be a little harder than I thought it would. I will have to look at some tutorials and make sure that spike looks like crystal.

Anyways, that's all for now. If you haven't played the Darksiders series, I completely recommend it. Thanks for reading!

Replies 0 Comments Reply Reply

Calendar October 30, 2014 23:18

Blogger Blogger

Death's Mask - Retopology Done


So the retopology is done, it took me a while trying to make sure that both sides would match and quads. I also had to restart the process once or twice since I messed up. I have to say that this was a really helpful experience since I've never had to do the retopo by hand on a model.

Now that I have the low poly model, I'm going to do the UVs and bake the maps. That's all for now, thanks for reading!

Replies 0 Comments Reply Reply

Calendar October 19, 2014 22:33

Blogger Blogger

Drawing - Koi Fish (Colored)


I have been working more on ZBrush, but I decided to take a break and do some sketching in Photoshop. I added some color, but this was mainly a drawing exercise. That's all for now, thanks for reading!

Replies 0 Comments Reply Reply