Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

you can't assume, there's always something in your vector, so you need to care for the case it's empty:

if (points.size() > 0) { points[0].x points[0].y }

you can't assume, there's always something in your vector, so you need to care for the case it's empty:

if (points.size() > 0)
{
points[0].x
points[0].y
}

}