jpaoneMines / csci441

CSCI441 Library Helper Functions and Classes
MIT License
5 stars 2 forks source link

objects3.hpp::drawSphere() sometimes not spheres #3

Closed jpaoneMines closed 3 years ago

jpaoneMines commented 4 years ago

For some architectures, the spheres do not appear as spheres.

It is either the step size for the vertices or the indices that causes the triangles to jump across the sphere and form a very jagged cube-y looking sphere.

jpaoneMines commented 4 years ago

marbles

jpaoneMines commented 3 years ago

Solved locally, not yet pushed to master repo yet.

Shaders were using single precision while VBOs were generating double precision. Changed objects.hpp and teapot.hpp to use only GLfloat every where.

jpaoneMines commented 3 years ago

Will close when pushed.