Quantcast
Channel: beginners - openFrameworks
Viewing all articles
Browse latest Browse all 4929

Weird glitch with easy cam

$
0
0

@cyrstem wrote:

hi i got this weird glitch when moving with easy cam, can someone explain me why i get that dark line when moving the sphere



what i’m doing is creating a particle and position each on the vertices of a sphere like this:
 vertices = sphere.getMesh().getVertices();
    for (int i = 0; i < vertices.size(); i++)
    {
        glm::vec3 v = vertices[i];
        if(ofGetFrameNum() % 70  ==0){
            Particle pTemp;
            pTemp.pos = v +ofPoint(0,0,0);
            p.push_back(pTemp);
        }
    }

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 4929

Trending Articles