aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/sims/math/PseudoVector3D.scala
blob: ea51c10cb6ba8585f77cd5f31e3fd90cb6e718c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*    _____ _ __  ________    ___                                      *\
**   / ___/(_)  |/  / ___/   |__ \  Simple Mechanics Simulator 2       **
**   \__ \/ / /|_/ /\__ \    __/ /  copyright (c) 2011 Jakob Odersky   **
**  ___/ / / /  / /___/ /   / __/                                      **
** /____/_/_/  /_//____/   /____/                                      **
\*                                                                     */

package sims.math

/**An x3-axis aligned vector. Since SIMS is in 2D, 3D vectors are only used as a convenience to simulate operations that only exist
 * in three dimensions such as the cross product.*/
case class PseudoVector3D(x3: Double) {
	
	def cross(v: Vector2D): Vector2D = v.leftNormal * x3
	
}