<< Chapter < Page Chapter >> Page >

What's next?

In the next module, you will learn how to compare column matrices for equality, how to compare two points for equality, how to compare two vectors forequality, how to add one column matrix to another, how to subtract one column matrix from another, and how to get a displacement vector from one point toanother.

Miscellaneous

This section contains a variety of miscellaneous information.

Housekeeping material
  • Module name: GAME2302-0110: Updating the Game Math Library for Graphics
  • File: Game0110.htm
  • Published: 10/14/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 26 through Listing 28 below.

Listing 26 . Source code for the game-math library class named GM2D02.

/*GM2D02.java Copyright 2008, R.G.BaldwinRevised 02/03/08 The name GM2Dnn is an abbreviation for GameMath1Dnn.See the file named GM2D01.java for a general description of this game-math library file. This file is an update ofGM2D01. This update added the following new capabilities:Draw circles around points Draw linesDraw vectors Call a set method to change the values in aColMatrix object. Call a set method to change the values in aPoint object. Call a set method to change the values in aVector object. Call a set method to change one of the pointsthat defines a line. Constructors were updated to ensure that existing points,vectors, and lines are not corrupted by using the newset methods to change the values in the ColMatrix and/or Point objects originally used to construct the points,vectors, and lines. The updated constructors create and save clones of theColMatrix and/or Point objects originally used to define the Point, Vector, and/or Line objects.Tested using JDK 1.6 under WinXP. *********************************************************/import java.awt.geom.*; import java.awt.*;public class GM2D02{ //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];ColMatrix(double data0,double data1){//constructor 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 //--------------------------------------------------//}//end class ColMatrix //====================================================//public static class Point{GM2D02.ColMatrix point;Point(GM2D02.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//--------------------------------------------------// }//end class Point//====================================================//public static class Vector{ GM2D02.ColMatrix vector;Vector(GM2D02.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 ColMatrix 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,GM2D02.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 //--------------------------------------------------//}//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{GM2D02.Point[] line = new GM2D02.Point[2];Line(GM2D02.Point tail,GM2D02.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 GM2D02.ColMatrix( tail.getData(0),tail.getData(1)));this.line[1] = new Point(new GM2D02.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 GM2D02.Point getTail(){ return line[0]; }//end getTail//--------------------------------------------------//public GM2D02.Point getHead(){ return line[1]; }//end getHead//--------------------------------------------------//public void setTail(GM2D02.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 GM2D02.ColMatrix( newPoint.getData(0),newPoint.getData(1)));}//end setTail //--------------------------------------------------//public void setHead(GM2D02.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 GM2D02.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 GM2D02

Questions & Answers

A golfer on a fairway is 70 m away from the green, which sits below the level of the fairway by 20 m. If the golfer hits the ball at an angle of 40° with an initial speed of 20 m/s, how close to the green does she come?
Aislinn Reply
cm
tijani
what is titration
John Reply
what is physics
Siyaka Reply
A mouse of mass 200 g falls 100 m down a vertical mine shaft and lands at the bottom with a speed of 8.0 m/s. During its fall, how much work is done on the mouse by air resistance
Jude Reply
Can you compute that for me. Ty
Jude
what is the dimension formula of energy?
David Reply
what is viscosity?
David
what is inorganic
emma Reply
what is chemistry
Youesf Reply
what is inorganic
emma
Chemistry is a branch of science that deals with the study of matter,it composition,it structure and the changes it undergoes
Adjei
please, I'm a physics student and I need help in physics
Adjanou
chemistry could also be understood like the sexual attraction/repulsion of the male and female elements. the reaction varies depending on the energy differences of each given gender. + masculine -female.
Pedro
A ball is thrown straight up.it passes a 2.0m high window 7.50 m off the ground on it path up and takes 1.30 s to go past the window.what was the ball initial velocity
Krampah Reply
2. A sled plus passenger with total mass 50 kg is pulled 20 m across the snow (0.20) at constant velocity by a force directed 25° above the horizontal. Calculate (a) the work of the applied force, (b) the work of friction, and (c) the total work.
Sahid Reply
you have been hired as an espert witness in a court case involving an automobile accident. the accident involved car A of mass 1500kg which crashed into stationary car B of mass 1100kg. the driver of car A applied his brakes 15 m before he skidded and crashed into car B. after the collision, car A s
Samuel Reply
can someone explain to me, an ignorant high school student, why the trend of the graph doesn't follow the fact that the higher frequency a sound wave is, the more power it is, hence, making me think the phons output would follow this general trend?
Joseph Reply
Nevermind i just realied that the graph is the phons output for a person with normal hearing and not just the phons output of the sound waves power, I should read the entire thing next time
Joseph
Follow up question, does anyone know where I can find a graph that accuretly depicts the actual relative "power" output of sound over its frequency instead of just humans hearing
Joseph
"Generation of electrical energy from sound energy | IEEE Conference Publication | IEEE Xplore" ***ieeexplore.ieee.org/document/7150687?reload=true
Ryan
what's motion
Maurice Reply
what are the types of wave
Maurice
answer
Magreth
progressive wave
Magreth
hello friend how are you
Muhammad Reply
fine, how about you?
Mohammed
hi
Mujahid
A string is 3.00 m long with a mass of 5.00 g. The string is held taut with a tension of 500.00 N applied to the string. A pulse is sent down the string. How long does it take the pulse to travel the 3.00 m of the string?
yasuo Reply
Who can show me the full solution in this problem?
Reofrir Reply
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