Is there a simple command (i.e. from the VideoDriver class) to just draw a simple, colored point (of whatever width)?
- Ben
Drawing Points?
Code: Select all
void drawDot( int x, int y, int size , video::SColor color )
{
driver->draw2DRectangle(color, core::rect<s32>(x, y, x+size, y+size));
}