Digital FXtbook
Easy Contacts
  • Home
    • Software
    • The Author
    • Former Students Hall of Fame
    • A tribute....
  • 3d Training
    • Gaming >
      • Unity >
        • Introduction to Unity >
          • Introduction >
            • 3d Gaming Essentials
            • First Project
          • Introduction to Scripting >
            • Getting Started with Scripting
            • Default Scripting
            • Game Object Scripting
          • 2d Essentials >
            • 2d Game Objects
            • Objects on 2d Game Objects
          • Real Time Industry
        • Creative Core >
          • Introduction to Creative Core
          • Shaders and Materials
          • Lighting
          • Animation
          • VFX
          • Cameras
          • Post Processing
          • Audio
          • User Interface
          • Proto-Typing
      • Maya >
        • Modeling >
          • Introduction: The Temple
          • Name Text Curve
          • Minecraft Steve
          • Minecraft Tools and Weapons
          • Roblox Character modeling
          • Garbage Can
          • Hammer
          • Sword of Light
          • Buzz Axe
          • Halo 1 Blood Gulch Base
          • Hammer
          • Sword
          • Character Modeling Big Daddy
          • Shield
          • The OM6G
          • Weapon
          • Character Modeling Legion the Geth
          • Character Modeling Geth Armor
        • Animation >
          • Character Animation
        • Rigging >
          • Rigging with HumanIK
          • Characterizing and MoCap
          • Integration with Unity
    • Fundamentals of 3d >
      • AutoDesk
      • Introduction: The Temple
      • Creating a Film >
        • Scriptwriting and Planning
        • StoryBoarding
        • Story Reels
      • Modeling >
        • The Nail
        • First Freestyle Lesson >
          • Cup and Straw
          • Garbage Can
        • Fence
        • Hammer
        • House
        • Environment Bubble
      • Animation >
        • Beginning Animation
        • Animation - Walk Cycle
        • Facial Animation
      • Rendering >
        • Arnold Rendering
      • Editing film >
        • Credits
        • Video Editing
      • Characters
    • Advanced Maya >
      • Modeling and Rigging >
        • Linda Training >
          • Advanced Modeling >
            • Modeling Basics
            • Modeling Room Objects
          • Rigging >
            • Rigging Basics
            • Rigging Creating Skeletons
            • Rigging: Body Controls
            • Rigging: Hands
            • Rigging: Skinning
        • Modeling >
          • Image Planes
          • Polygon Modeling >
            • Coke Can
            • Low Polygon Character
            • Character Modeling Legion the Geth
            • Character Modeling Geth Armor
            • Face Modeling
          • NURBS Modeling >
            • Intro to NURBS
            • Lofting
            • CV Curves
            • Organic Modeling
            • Autombile
        • Texturing
        • Rigging >
          • Rigging with HumanIK
          • Smooth Skinning
        • Motion Capture
        • Blender
      • 3d Animation >
        • Linda Training >
          • Animation - Fundamentals
          • Animation - Next Steps
          • Animation - Pose to Pose
          • Animation - Facial Animation
          • Animation - Lip and Body Animation
        • Arnold Rendering
        • Reference Videos
        • Beginning Animation
        • Characters
  • Coding
    • C# Programming >
      • Beginning C# >
        • First Unit >
          • First Program
          • Comments >
            • PsuedoCode
          • Variable Types >
            • AlphaNumeric Variables
            • Numeric Variables
          • Getting input from the user
          • Operators >
            • Assignment and Arithmetic Operators >
              • Use of Parenthesis
              • Algebra in code and assundry CHAOS
            • Comparison and Logical Operators >
              • Logical Data, Illogical Assignment
            • Operator Assignments >
              • Floats Conversion from Metric to English
              • When is Easter??
          • Try and Catch
          • Casting
        • Second Unit >
          • Conditional Statements >
            • Number validator
            • Number tester
            • Speed Camera
          • Random Class
          • Arrays >
            • Simple Arrays
            • Complex Arrays
          • Loops >
            • For Loops >
              • Adding Numbers
            • For Each Loops
            • While Loops
            • Do While Loops
        • Third Unit
      • Intermediate C# >
        • Object Oriented Programming
    • Unity Coding >
      • Junior Programmer >
        • Create with Code 1
        • Create with Code 2
        • Manage Scene Flow and Data
        • Apply Object-Oriented Principles
      • Introduction Unity Lesson
      • Number Wizard Game #1
      • Second Unity Game: Text Adventure
      • Number Wizard Game GUI
      • Block Breaker >
        • Block Breaker Game #1
        • Block Breaker Game #2
        • Block Breaker Game #3
        • Block Breaker Game #4
  • Student Films
    • Advanced Student's movies
    • Beginning Student's movies
  • Adobe
    • Premier >
      • Chapter 1
      • Chapter 2
      • Chapter 3
      • Editing A-Roll
      • Chapter 4
      • Editing B-Roll
      • Chapter 5
      • Chapter 6
      • Chapter 7
      • Chapter 8
      • Chapter 9
      • Chapter 10
      • Chapter 11
      • Chapter 12
    • Photoshop >
      • Introduction
      • Selection Tools >
        • Melonhead >
          • Melonhead Creative
        • Breakfast Lunch or Dinner
        • Blu 42
      • Painting Tools >
        • Invisi-World
        • Image Adjustment
        • FreeStyle project
      • Drawing Tools
  • Links
    • BPA >
      • Futuristic Character >
        • Design and Concept
    • The Top Six Animation Schools
    • The Top Video Game Design Schools

Shortcut Operators

OK... Shortcut Operators can be a little bit confusing at first, but when you get the hang of it they shorten everything that you type. In this lesson you are going to have the opportunity to interact with Shortcut Operators

So basically what they do is just simplify what you have to type into your code.
​
For Example:
     This line of code for a video game point counter,
          currentPoints = currentPoints + 100;
     Could be shortened to,
          currentPoints += 100;
     Using Shortcut Operators keeps us from having to type the name of the variable currentPoints twice. All we have to do is simply put the addition(+) operator in front of the assign(=) operator and BOOM we don't have to type in the variable again. 

Another Example:

     This line of code for a video game point counter,
          currentPoints = currentPoints * bonusMultiplier;
     Could be shortened to,
          currentPoints *= bonusMultiplier;
     Using Shortcut Operators can be Addition, Subtraction, Multiplication, and Division. These operators gives the programmer many options to work with and allow you to type less code in the long run. 

Another, more complex, example,
     This line of code for a video game point counter,
          currentPoints = (currentPoints * bonusMultiplier) * 2
     Can easily be shortened to this,
          currentPoints *= bonusMultiplier * 2

          

Pre and Post Operators

In this lesson you are going to have the opportunity to interact with Pre and Post Operators. A Pre-Operator is an operator that is stated in the code BEFORE the Variable. A Post-Operator is an Operator that is stated in the code AFTER the operator. these work very different than each other in the final results of how the solution is acquired.

Pre-Operator
A Pre-Operator will interact with the Variable before any other operations are accomplished.

Example:
          int v;
          v = 10;
          v = 2 *  ++v
From the example above the integer v which is equal to 10, is going to be multiplied by 2, BUT this will only happen AFTER v is increased by 1. The reason that this will happen is because the Pre-Operator is a higher priority than the multiplication operator. 
          So.... the way that this is figured is like this, (v + 1) * 10 = v
          Result v = 22 


Post-Operator
​A Post-Operator will interact with the Variable eventually some where along the course of the program.... But it will not really have any interaction with this equation
          
Example:

          int v;
          v = 10;
          v = 2 *  v++
From the example above the integer v which is equal to 10, is going to be multiplied by 2, eventually v will be increased by 1 to equal 11. 
          
So..... the way that this is figured is like this,  v * 10 = v, later on v will be increased by 1
          Result v = 20 
​

Pre-Assignment videos


The Assignment

Add the following Psuedocode into your program and turn each line into code.
​You will need three int variables named i, j, and k.


​Pseudocode

     // add i and j and assign it to k
     // print k to the screen
     // Pre-Operate 1 to i and Multiply it by j assign the result to k

      // print k to the screen
     // Post-Operate 1 to j and divide it by i assign the result to k
     // print k to the screen
     // Pre-Operate 1 to j and i, multiply i by j, add it k, assign the result to k
​
   
 // add  i to itself using short code operators
     // print i to the Console
     // subtract j by itself using short code operators

     // print j to the Console
   
 // multiply i by itself using short code operators
     // print k to the Console

     // divide k by itself using short code operators
Proudly powered by Weebly