Hi all,

i have a problem, it's possible to convert this c++ code into delphi. Any chance or workaround?

Code:
list<Vector2> vList;
const Vector2 vMin = 1.2f;
const Vector2 vMax = 8.9f;
 
list.clear();
for (float y = vMin.y; y<=vMax.y; y+=1.0f)
{
    for (float x = vMin.x; x<=vMax.x; x+=1.0f)
    {
    outList.push_back(Vector2(x, y));
    }
}
Thanks in advance
Sesilla