<< Chapter < Page Chapter >> Page >

Summary

In this module, I presented and explained four programs that use the game-math library named GM2D04 . The purpose of the program named VectorAdd05 is to use the addVectorToPoint method of the GM2D04.Point class to translate a geometric object from one location in space to a different location in space.

The purpose of the program named VectorAdd05a is to accomplish the same translation operation, but to do so in a possibly moreefficient manner.

The purpose of the program named VectorAdd06 is to teach you how to do rudimentary animation using the game-math library.

The purpose of the program named StringArt01 is to teach you how to use methods of the game-math library to produce relatively complexdrawings.

All of the programs are interactive in that they provide a GUI that allows the user to modify certain aspects of the behavior of the program.

What's next?

In the next module, you will learn how to update the game-math library to support 3D math, how to program the equations for projecting a 3D world onto a2D plane, and how to add vectors in 3D.

You will also learn about scaling, translation, and rotation of a point in both 2D and 3D, about the rotation equations and how to implement them in both2D and 3D, and much more.

Miscellaneous

This section contains a variety of miscellaneous information.

Housekeeping material
  • Module name: GAME 2302-0130: Putting the Game-Math Library to Work
  • File: Game0130.htm
  • Published: 10/16/12
  • Revised: 02/01/16
Disclaimers:

Financial : Although the Connexions site makes it possible for you to download a PDF file for thismodule at no charge, and also makes it possible for you to purchase a pre-printed version of the PDF file, you should beaware that some of the HTML elements in this module may not translate well into PDF.

I also want you to know that, I receive no financial compensation from the Connexions website even if you purchase the PDF version of the module.

In the past, unknown individuals have copied my modules from cnx.org, converted them to Kindle books, and placed them for sale on Amazon.com showing me as the author. Ineither receive compensation for those sales nor do I know who does receive compensation. If you purchase such a book, please beaware that it is a copy of a module that is freely available on cnx.org and that it was made and published withoutmy prior knowledge.

Affiliation : I am a professor of Computer Information Technology at Austin Community College in Austin, TX.

Complete program listings

Complete listings of the programs discussed in this module are shown in Listing 17 through Listing 21 below.

Listing 17 . Source code for the game-math library named GM2D04.

/*GM2D04.java Copyright 2008, R.G.BaldwinRevised 02/08/08 The name GM2Dnn is an abbreviation for GameMath2Dnn.See the file named GM2D01.java for a general description of this game-math library file. This file is an update ofGM2D03. This update added the following new capabilities:Vector addition - Adds this Vector object to a Vector object received as an incoming parameter and returns thesum as a resultant Vector object. Added a method named getLength that returns the lengthof a vector as type double. Added a method named addVectorToPoint to add a Vector toa Point producing a new Point. Tested using JDK 1.6 under WinXP.*********************************************************/ import java.awt.geom.*;import java.awt.*; public class GM2D04{//An object of this class represents a 2D column matrix. // An object of this class is the fundamental building// block for several of the other classes in the // library.public static class ColMatrix{ double[]data = new double[2];public ColMatrix(double data0,double data1){data[0] = data0;data[1] = data1;}//end constructor //--------------------------------------------------//public String toString(){return data[0] + "," + data[1]; }//end overridden toString method//--------------------------------------------------//public double getData(int index){ if((index<0) || (index>1)){ throw new IndexOutOfBoundsException();}else{ return data[index]; }//end else}//end getData method //--------------------------------------------------//public void setData(int index,double data){if((index<0) || (index>1)){ throw new IndexOutOfBoundsException();}else{ this.data[index]= data; }//end else}//end setData method //--------------------------------------------------////This method overrides the equals method inherited// from the class named Object. It compares the values // stored in two matrices and returns true if the// values are equal or almost equal and returns false // otherwise.public boolean equals(Object obj){ if(obj instanceof GM2D04.ColMatrix&&Math.abs(((GM2D04.ColMatrix)obj).getData(0) - getData(0))<= 0.00001&&Math.abs(((GM2D04.ColMatrix)obj).getData(1) - getData(1))<= 0.00001){ return true;}else{ return false;}//end else}//end overridden equals method //--------------------------------------------------////Adds one ColMatrix object to another ColMatrix // object, returning a ColMatrix object.public GM2D04.ColMatrix add(GM2D04.ColMatrix matrix){ return new GM2D04.ColMatrix(getData(0)+matrix.getData(0), getData(1)+matrix.getData(1));}//end subtract //--------------------------------------------------////Subtracts one ColMatrix object from another // ColMatrix object, returning a ColMatrix object. The// object that is received as an incoming parameter // is subtracted from the object on which the method// is called. public GM2D04.ColMatrix subtract(GM2D04.ColMatrix matrix){ return new GM2D04.ColMatrix(getData(0)-matrix.getData(0), getData(1)-matrix.getData(1));}//end subtract //--------------------------------------------------//}//end class ColMatrix //====================================================//public static class Point{GM2D04.ColMatrix point;public Point(GM2D04.ColMatrix point){//constructor //Create and save a clone of the ColMatrix object// used to define the point to prevent the point // from being corrupted by a later change in the// values stored in the original ColMatrix object // through use of its set method.this.point = new ColMatrix(point.getData(0),point.getData(1));}//end constructor //--------------------------------------------------//public String toString(){ return point.getData(0) + "," + point.getData(1);}//end toString //--------------------------------------------------//public double getData(int index){if((index<0) || (index>1)){ throw new IndexOutOfBoundsException();}else{ return point.getData(index);}//end else }//end getData//--------------------------------------------------//public void setData(int index,double data){ if((index<0) || (index>1)){ throw new IndexOutOfBoundsException();}else{ point.setData(index,data);}//end else }//end setData//--------------------------------------------------////This method draws a small circle around the location // of the point on the specified graphics context.public void draw(Graphics2D g2D){ Ellipse2D.Double circle =new Ellipse2D.Double(getData(0)-3, getData(1)-3,6, 6);g2D.draw(circle); }//end draw//--------------------------------------------------////Returns a reference to the ColMatrix object that // defines this Point object.public GM2D04.ColMatrix getColMatrix(){ return point;}//end getColMatrix //--------------------------------------------------////This method overrides the equals method inherited // from the class named Object. It compares the values// stored in the ColMatrix objects that define two // Point objects and returns true if they are equal// and false otherwise. public boolean equals(Object obj){if(point.equals(((GM2D04.Point)obj). getColMatrix())){return true; }else{return false; }//end else}//end overridden equals method//--------------------------------------------------// //Gets a displacement vector from one Point object to// a second Point object. The vector points from the // object on which the method is called to the object// passed as a parameter to the method. Kjell // describes this as the distance you would have to// walk along the x and then the y axes to get from // the first point to the second point.public GM2D04.Vector getDisplacementVector( GM2D04.Point point){return new GM2D04.Vector(new GM2D04.ColMatrix( point.getData(0)-getData(0),point.getData(1)-getData(1))); }//end getDisplacementVector//--------------------------------------------------////Adds a Vector to a Point producing a new Point. public GM2D04.Point addVectorToPoint(GM2D04.Vector vec){ return new GM2D04.Point(new GM2D04.ColMatrix(getData(0) + vec.getData(0), getData(1) + vec.getData(1)));}//end addVectorToPoint //--------------------------------------------------//}//end class Point //====================================================//public static class Vector{GM2D04.ColMatrix vector;public Vector(GM2D04.ColMatrix vector){//constructor //Create and save a clone of the ColMatrix object// used to define the vector to prevent the vector // from being corrupted by a later change in the// values stored in the original ColVector object. this.vector = new ColMatrix(vector.getData(0),vector.getData(1)); }//end constructor//--------------------------------------------------// public String toString(){return vector.getData(0) + "," + vector.getData(1); }//end toString//--------------------------------------------------//public double getData(int index){ if((index<0) || (index>1)){ throw new IndexOutOfBoundsException();}else{ return vector.getData(index);}//end else }//end getData//--------------------------------------------------//public void setData(int index,double data){ if((index<0) || (index>1)){ throw new IndexOutOfBoundsException();}else{ vector.setData(index,data);}//end else }//end setData//--------------------------------------------------////This method draws a vector on the specified graphics // context, with the tail of the vector located at a// specified point, and with a small circle at the // head.public void draw(Graphics2D g2D,GM2D04.Point tail){ Line2D.Double line = new Line2D.Double(tail.getData(0), tail.getData(1),tail.getData(0)+vector.getData(0), tail.getData(1)+vector.getData(1));//Draw a small circle to identify the head. Ellipse2D.Double circle = new Ellipse2D.Double(tail.getData(0)+vector.getData(0)-2, tail.getData(1)+vector.getData(1)-2,4, 4);g2D.draw(circle); g2D.draw(line);}//end draw //--------------------------------------------------////Returns a reference to the ColMatrix object that// defines this Vector object. public GM2D04.ColMatrix getColMatrix(){return vector; }//end getColMatrix//--------------------------------------------------// //This method overrides the equals method inherited// from the class named Object. It compares the values // stored in the ColMatrix objects that define two// Vector objects and returns true if they are equal // and false otherwise.public boolean equals(Object obj){ if(vector.equals(((GM2D04.Vector)obj).getColMatrix())){ return true;}else{ return false;}//end else}//end overridden equals method //--------------------------------------------------////Adds this vector to a vector received as an incoming// parameter and returns the sum as a vector. public GM2D04.Vector add(GM2D04.Vector vec){return new GM2D04.Vector(new ColMatrix( vec.getData(0)+vector.getData(0),vec.getData(1)+vector.getData(1))); }//end add//--------------------------------------------------////Returns the length of a Vector object. public double getLength(){return Math.sqrt( getData(0)*getData(0) + getData(1)*getData(1));}//end getLength //--------------------------------------------------//}//end class Vector //====================================================////A line is defined by two points. One is called the// tail and the other is called the head. public static class Line{GM2D04.Point[] line = new GM2D04.Point[2];public Line(GM2D04.Point tail,GM2D04.Point head){ //Create and save clones of the points used to// define the line to prevent the line from being // corrupted by a later change in the coordinate// values of the points. this.line[0]= new Point(new GM2D04.ColMatrix( tail.getData(0),tail.getData(1)));this.line[1] = new Point(new GM2D04.ColMatrix(head.getData(0),head.getData(1))); }//end constructor//--------------------------------------------------// public String toString(){return "Tail = " + line[0].getData(0) + ","+ line[0].getData(1) + "\nHead = "+ line[1].getData(0) + ","+ line[1].getData(1);}//end toString //--------------------------------------------------//public GM2D04.Point getTail(){ return line[0]; }//end getTail//--------------------------------------------------//public GM2D04.Point getHead(){ return line[1]; }//end getHead//--------------------------------------------------//public void setTail(GM2D04.Point newPoint){ //Create and save a clone of the new point to// prevent the line from being corrupted by a // later change in the coordinate values of the// point. this.line[0]= new Point(new GM2D04.ColMatrix( newPoint.getData(0),newPoint.getData(1)));}//end setTail //--------------------------------------------------//public void setHead(GM2D04.Point newPoint){//Create and save a clone of the new point to // prevent the line from being corrupted by a// later change in the coordinate values of the // point.this.line[1] = new Point(new GM2D04.ColMatrix(newPoint.getData(0),newPoint.getData(1))); }//end setHead//--------------------------------------------------//public void draw(Graphics2D g2D){ Line2D.Double line = new Line2D.Double(getTail().getData(0), getTail().getData(1),getHead().getData(0), getHead().getData(1));g2D.draw(line); }//end draw//--------------------------------------------------// }//end class Line//====================================================// }//end class GM2D04//======================================================//

Questions & Answers

What is inflation
Bright Reply
a general and ongoing rise in the level of prices in an economy
AI-Robot
What are the factors that affect demand for a commodity
Florence Reply
differentiate between demand and supply giving examples
Lambiv Reply
differentiated between demand and supply using examples
Lambiv
what is labour ?
Lambiv
how will I do?
Venny Reply
how is the graph works?I don't fully understand
Rezat Reply
information
Eliyee
devaluation
Eliyee
t
WARKISA
hi guys good evening to all
Lambiv
multiple choice question
Aster Reply
appreciation
Eliyee
explain perfect market
Lindiwe Reply
In economics, a perfect market refers to a theoretical construct where all participants have perfect information, goods are homogenous, there are no barriers to entry or exit, and prices are determined solely by supply and demand. It's an idealized model used for analysis,
Ezea
What is ceteris paribus?
Shukri Reply
other things being equal
AI-Robot
When MP₁ becomes negative, TP start to decline. Extuples Suppose that the short-run production function of certain cut-flower firm is given by: Q=4KL-0.6K2 - 0.112 • Where is quantity of cut flower produced, I is labour input and K is fixed capital input (K-5). Determine the average product of lab
Kelo
Extuples Suppose that the short-run production function of certain cut-flower firm is given by: Q=4KL-0.6K2 - 0.112 • Where is quantity of cut flower produced, I is labour input and K is fixed capital input (K-5). Determine the average product of labour (APL) and marginal product of labour (MPL)
Kelo
yes,thank you
Shukri
Can I ask you other question?
Shukri
what is monopoly mean?
Habtamu Reply
What is different between quantity demand and demand?
Shukri Reply
Quantity demanded refers to the specific amount of a good or service that consumers are willing and able to purchase at a give price and within a specific time period. Demand, on the other hand, is a broader concept that encompasses the entire relationship between price and quantity demanded
Ezea
ok
Shukri
how do you save a country economic situation when it's falling apart
Lilia Reply
what is the difference between economic growth and development
Fiker Reply
Economic growth as an increase in the production and consumption of goods and services within an economy.but Economic development as a broader concept that encompasses not only economic growth but also social & human well being.
Shukri
production function means
Jabir
What do you think is more important to focus on when considering inequality ?
Abdisa Reply
any question about economics?
Awais Reply
sir...I just want to ask one question... Define the term contract curve? if you are free please help me to find this answer 🙏
Asui
it is a curve that we get after connecting the pareto optimal combinations of two consumers after their mutually beneficial trade offs
Awais
thank you so much 👍 sir
Asui
In economics, the contract curve refers to the set of points in an Edgeworth box diagram where both parties involved in a trade cannot be made better off without making one of them worse off. It represents the Pareto efficient allocations of goods between two individuals or entities, where neither p
Cornelius
In economics, the contract curve refers to the set of points in an Edgeworth box diagram where both parties involved in a trade cannot be made better off without making one of them worse off. It represents the Pareto efficient allocations of goods between two individuals or entities,
Cornelius
Suppose a consumer consuming two commodities X and Y has The following utility function u=X0.4 Y0.6. If the price of the X and Y are 2 and 3 respectively and income Constraint is birr 50. A,Calculate quantities of x and y which maximize utility. B,Calculate value of Lagrange multiplier. C,Calculate quantities of X and Y consumed with a given price. D,alculate optimum level of output .
Feyisa Reply
Answer
Feyisa
c
Jabir
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Game 2302 - mathematical applications for game development. OpenStax CNX. Jan 09, 2016 Download for free at https://legacy.cnx.org/content/col11450/1.33
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Game 2302 - mathematical applications for game development' conversation and receive update notifications?

Ask