Voili voilou

Dependencies:   RoboClaw StepperMotor mbed

Fork of Robot2016_2-0 by ARES

Map/Obstacles/Obstacle.cpp

Committer:
IceTeam
Date:
2016-01-05
Revision:
11:9c70a7f4d7aa

File content as of revision 11:9c70a7f4d7aa:

#include "Obstacle.h"

Obstacle::Obstacle(float robotRadius, int id)
{
    this->robotRadius = robotRadius;
    this->id = id;
    this->active = true;
    bigShape = true;
    smoothBigShape = false;
}

Obstacle::~Obstacle()
{
    
}