views:

400

answers:

1
+3  A: 

You are getting those extra lines because you are using a LINE_STRIP.

In your 'F' case, push both end points of your line into the vector (like you were doing originally).

_vertexVector.push_back(_prevState.position);
_vertexVector.push_back(_currState.position);

And when you draw, use LINE_LIST instead.

Corey Ross
Thank you very much, this is why i love Stack-Overflow
Craig