pub trait Position<Pos> { // Required methods fn pos(&self) -> Pos; fn set_pos(&mut self, position: &Pos); }
Methods for accessing the position of an agent.
Gets the cells current position.
Gets the cells current velocity.