Replaced Vertex struct with Vector class

This commit is contained in:
2019-02-20 11:00:42 -06:00
parent 7b903fbdb9
commit a6e175d9e0
6 changed files with 59 additions and 10 deletions

View File

@@ -94,8 +94,8 @@ class IMICFPS
# if $debug && @entity
# glBegin(GL_LINES)
# glColor3f(1,0,0)
# glVector3f(@x, @y, @z)
# glVector3f(@entity.x, @entity.y, @entity.z)
# glVertex3f(@x, @y, @z)
# glVertex3f(@entity.x, @entity.y, @entity.z)
# glEnd
# end
end