Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Floors/Floors.cpp
- Committer:
- el17m2h
- Date:
- 2019-04-14
- Revision:
- 7:0d9cee90ab0d
- Parent:
- 5:8814d6de77d0
- Child:
- 8:90e789413e0b
File content as of revision 7:0d9cee90ab0d:
#include "Floors.h" Floors::Floors(){ } Floors::~Floors(){ } void Floors::init(int x, int y, int width, int height){ _height = height; _width = width; _x = x; _y = y; _velocity.x = 0; _velocity.y = 0; } void Floors::draw(N5110 &lcd){ lcd.drawRect(_x, _y, _width, _height, FILL_BLACK); } void Floors::update(){ srand(time(0)); // initializes random number generator } void Floors::set_velocity(Vector2D v){ _velocity.x = v.x; _velocity.y = v.y; } Vector2D Floors::get_velocity(){ Vector2D v = {_velocity.x,_velocity.y}; return v; } Vector2D Floors::get_pos(){ Vector2D p = {_x,_y}; return p; } void Floors::set_pos(Vector2D p){ _x = p.x; _y = p.y; }