Posts

Showing posts from August, 2021

Portrait Drawing Technique with Letter T

Image
 Portrait Drawing Technique with Letter T - Cross Line What is letter "T" technique in portrait drawing? When you first learn portrait, you try to find some techniques for measurements and proportions. "The Cross" or letter "T" is one of the techniques. But how does it work? And why it's useful?  The Horizontal Line: It stands for the brows line. In the same time, it's the top line for the ears.  The Vertical Line: It stand for the nose line. You can extend the "T" to be a "cross line" to include the top of the head. As you can see in figure 1., the vertical line is divided equally into 3 parts (3 thirds) from top to bottom as below: First part: From hair line to brows line Second part: From brows line to bottom of the nose (nose line) Third part: From nose line to jaw line These are the main lines that will result in true measurements for the face. Figure 1. Letter T or the cross line In below illustrations, you can find how he...

Python Game - Dragon Cave Game

Image
 The Dragon Cave Game 🐲 Python Game - The Dragon Cave This's a simple fun game for python beginners in coding. A very short game with a short introduction that goes like this: You are in a land full of dragons. In front of you, you see two caves. In one cave, the dragon is friendly, and will share his treasure with you. The other dragon is greedy and hungry, and will eat you on sight. Which cave will you go into? (1 or 2 ?) The trick here is that the result (consequences) of your choice may vary depending on your luck (a random result). The funny part is, you can choose the the same number twice, but you get different results. And here's the code of the game: import   random import   time def   displayIntro ():      print ( "You are in a land full of dragons. In front of you," )      print ( "you see two caves. In one cave, the ...