-
- All Implemented Interfaces:
-
it.unibo.alchemist.model.interfaces.CognitivePedestrian,it.unibo.alchemist.model.interfaces.Node,it.unibo.alchemist.model.interfaces.Pedestrian,it.unibo.alchemist.model.interfaces.Pedestrian2D,it.unibo.alchemist.model.interfaces.nodes.NodeWithShape,java.io.Serializable,kotlin.Comparable,kotlin.collections.Iterable,kotlin.collections.MutableIterable
public interface CognitivePedestrian2D<T extends Object> implements CognitivePedestrian<T, Euclidean2DPosition, Euclidean2DTransformation>, Pedestrian2D<T>
A pedestrian with cognitive characteristics that lives in a bidimensional environment.
-
-
Method Summary
Modifier and Type Method Description abstract CognitiveModelgetCognitiveModel()The mind model of this pedestrian. List<InfluenceSphere>getSenses()abstract InfluenceSpheregetFieldOfView()The field of view of the pedestrian. abstract PedestrianGroup<T, Euclidean2DPosition, Euclidean2DTransformation>getMembershipGroup()The group this pedestrian belongs to. abstract GeometricShape<Euclidean2DPosition, Euclidean2DTransformation>getShape()abstract Physics2DEnvironment<T>getEnvironment()Access to the environment. -
Methods inherited from class it.unibo.alchemist.model.interfaces.CognitivePedestrian2D
influencialPeople -
Methods inherited from class it.unibo.alchemist.model.interfaces.CognitivePedestrian
speed -
Methods inherited from class it.unibo.alchemist.model.interfaces.nodes.NodeWithShape
addReaction, cloneNode, contains, getConcentration, getContents, getId, getMoleculeCount, getReactions, removeConcentration, removeReaction, setConcentration -
Methods inherited from class it.unibo.alchemist.model.interfaces.Node
compareTo, iterator -
Methods inherited from class kotlin.collections.MutableIterable
forEach, spliterator -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getCognitiveModel
abstract CognitiveModel getCognitiveModel()
The mind model of this pedestrian.
-
getSenses
List<InfluenceSphere> getSenses()
-
getFieldOfView
abstract InfluenceSphere getFieldOfView()
The field of view of the pedestrian.
-
getMembershipGroup
abstract PedestrianGroup<T, Euclidean2DPosition, Euclidean2DTransformation> getMembershipGroup()
The group this pedestrian belongs to.
-
getShape
abstract GeometricShape<Euclidean2DPosition, Euclidean2DTransformation> getShape()
-
getEnvironment
abstract Physics2DEnvironment<T> getEnvironment()
Access to the environment.
-
-
-
-