added sphere around the head, removed debugging stuff, 90s look
[hair] / src / hair.cc
index ef93f2c..de31ed8 100644 (file)
@@ -147,6 +147,7 @@ void Hair::draw() const
                glVertex3f(p.x, p.y, p.z);
                Vec3 dir = normalize(hair[i].pos - p) * hair_length;
                Vec3 end = p + dir;
+               glColor3f(1, 1, 0);
                glVertex3f(end.x, end.y, end.z);
 /*
                glColor3f(1, 1, 0);
@@ -187,7 +188,20 @@ void Hair::update(float dt)
                hair[i].velocity += ((-hair[i].velocity * DAMPING) + accel) * dt;
                Vec3 new_pos = hair[i].pos + hair[i].velocity * dt;
 
-               hair[i].pos = new_pos; //= handle_collision(new_pos);
+               /* collision detection with the head */
+               Vec3 normal = xform.upper3x3() * hair[i].spawn_dir;
+               Vec3 root = xform * hair[i].spawn_pt;
+               Vec3 dir = new_pos - root;
+               
+               normal.normalize();
+
+               /* angle that will cause the hair to be rendered inside the head */
+               float d = dot(dir, normal);
+               if(d < 0) {
+                       new_pos += -d * normal;
+               }
+
+               hair[i].pos = handle_collision(new_pos);
 
                dbg_force = force;
        }