Page 1 of 1

A4 Problem with an extra line

Posted: September 7th, 2015, 1:37 am
by jkhippie
It seems I have an extraneous line being draw with my model. I can't pin down where it's coming from. Any help on this would be appreciated.

extraneous line.zip
(638.27 KiB) Downloaded 211 times

Re: A4 Problem with an extra line

Posted: September 7th, 2015, 3:47 am
by albinopapa
Here's the line you have

Code: Select all

gfx.DrawLineClip(vertices.back().Rotation(angle) * scale + pos, vertices.front() * scale + pos, color);
this is what it should be

Code: Select all

gfx.DrawLineClip(vertices.back().Rotation(angle) * scale + pos, vertices.front().Rotation(angle) * scale + pos, color);

Re: A4 Problem with an extra line

Posted: September 7th, 2015, 3:53 pm
by jkhippie
Thanks, ap. I looked right over that. It's always the simple stuff, eh?