public abstract class AbstractTriangle extends java.lang.Object implements Collidable
Constructor and Description |
---|
AbstractTriangle() |
Modifier and Type | Method and Description |
---|---|
int |
collideWith(Collidable other,
CollisionResults results)
Check collision with another Collidable.
|
abstract Vector3f |
get1() |
abstract Vector3f |
get2() |
abstract Vector3f |
get3() |
abstract void |
set(Vector3f v1,
Vector3f v2,
Vector3f v3) |
public abstract Vector3f get1()
public abstract Vector3f get2()
public abstract Vector3f get3()
public int collideWith(Collidable other, CollisionResults results)
Collidable
collideWith
in interface Collidable
other
- The object to check collision againstresults
- Will contain the list of CollisionResult
s.