|
|
|
@ -11,9 +11,24 @@ Cloth* new_cloth(Vec2 startpos, Vec2 dimensions, unsigned int spacing) {
|
|
|
|
|
new_cloth->points = std::vector<Point*>(); |
|
|
|
|
new_cloth->connections = std::vector<Connection*>(); |
|
|
|
|
|
|
|
|
|
bool frozen_point = false; |
|
|
|
|
for (unsigned int y = 0; y < dimensions.y; y += spacing) { |
|
|
|
|
if (y == 0) { |
|
|
|
|
frozen_point = true; |
|
|
|
|
} else { |
|
|
|
|
frozen_point = false; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (unsigned int x = 0; x < dimensions.x; x += spacing) { |
|
|
|
|
Point* new_point = new Point{static_cast<float>(startpos.x + x), static_cast<float>(startpos.y + y), startpos.x + x, startpos.y + y, false}; |
|
|
|
|
Point* new_point = new Point{ |
|
|
|
|
.x = static_cast<float>(startpos.x + x), |
|
|
|
|
.y = static_cast<float>(startpos.y + y), |
|
|
|
|
.prev_x = static_cast<float>(startpos.x + x), |
|
|
|
|
.prev_y = static_cast<float>(startpos.y + y), |
|
|
|
|
.mass = 10.0f, |
|
|
|
|
.frozen = frozen_point, |
|
|
|
|
.selected = false, |
|
|
|
|
}; |
|
|
|
|
new_cloth->points.push_back(new_point); |
|
|
|
|
|
|
|
|
|
if (x > 0) { |
|
|
|
@ -55,7 +70,35 @@ void destroy_cloth(Cloth* cloth) {
|
|
|
|
|
|
|
|
|
|
void compute_cloth_forces(Cloth* cloth, Vec2f gravity_vec) { |
|
|
|
|
for (Point* p : cloth->points) { |
|
|
|
|
if (p->frozen) { |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
p->x += gravity_vec.x; |
|
|
|
|
p->y += gravity_vec.y;
|
|
|
|
|
p->y += gravity_vec.y; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void satisfy_cloth_constraints(Cloth* cloth, Vec2 top_left, Vec2 bottom_right) { |
|
|
|
|
for (Point* p : cloth->points) { |
|
|
|
|
// bottom
|
|
|
|
|
if (p->y > bottom_right.y) { |
|
|
|
|
p->y = bottom_right.y; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// right
|
|
|
|
|
if (p->x > bottom_right.x) { |
|
|
|
|
p->x = bottom_right.x; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// left
|
|
|
|
|
if (p->x < top_left.x) { |
|
|
|
|
p->x = top_left.x; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// up
|
|
|
|
|
if (p->y < top_left.y) { |
|
|
|
|
p->y = top_left.y; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |