HasVelocity

o1.world.objects.HasVelocity
trait HasVelocity extends HasPos

A supertype for objects that have a position and a velocity in two-dimensional space.

Attributes

Supertypes
trait HasPos
class Object
trait Matchable
class Any
Known subtypes

Members list

Inherited Not inherited +1
  • Not inherited
  • HasPos

Value members

Abstract methods

the object’s velocity

the object’s velocity

Concrete methods

Determines whether this object is bound for roughly the given direction, as per Direction.sharesQuadrant.

Determines whether this object is bound for roughly the given direction, as per Direction.sharesQuadrant.

Determines whether this object has a downward velocity, as per Direction.isDownward.

Determines whether this object has a downward velocity, as per Direction.isDownward.

Determines whether this object has a leftward velocity, as per Direction.isLeftward.

Determines whether this object has a leftward velocity, as per Direction.isLeftward.

Determines whether this object has a rightward velocity, as per Direction.isRightward.

Determines whether this object has a rightward velocity, as per Direction.isRightward.

Determines whether this object has an upward velocity, as per Direction.isUpward.

Determines whether this object has an upward velocity, as per Direction.isUpward.

def nextPos: Pos

Returns the Pos that this object, moving from its current location at its current velocity, reaches in one unit of time. That is, adds the dx and dy components of the velocity to the current Pos and returns the result.

Returns the Pos that this object, moving from its current location at its current velocity, reaches in one unit of time. That is, adds the dx and dy components of the velocity to the current Pos and returns the result.

Inherited methods

Determines the distance (“as the crow flies”) between this object’s pos and that of the given object.

Determines the distance (“as the crow flies”) between this object’s pos and that of the given object.

Inherited from:
HasPos

Inherited and Abstract methods

def pos: Pos

the object’s location

the object’s location

Inherited from:
HasPos