478{
481 auto& points1 = group1.collection->get_points();
482
483 for (size_t i = 0; i < points1.size(); ++i) {
484 const auto& pos_i = points1[i].position;
485 auto& state_i = group1.physics_state[i];
486
489 auto& points2 = group2.collection->get_points();
490
491 size_t start_j = (g1 == g2) ? i + 1 : 0;
492
493 for (size_t j = start_j; j < points2.size(); ++j) {
494 const auto& pos_j = points2[j].position;
495 auto& state_j = group2.physics_state[j];
496
497 glm::vec3 delta = pos_j - pos_i;
498 float distance = glm::length(delta);
499
500 if (distance < m_interaction_radius && distance > 0.001F) {
501 glm::vec3 direction = delta /
distance;
502
504
505 float repulsion_force = 0.0F;
508 }
509
510 glm::vec3 force = direction * (spring_force - repulsion_force);
511
512 state_i.force += force;
513 state_j.force -= force;
514 }
515 }
516 }
517 }
518 }
519}
std::vector< CollectionGroup > m_collections
float m_repulsion_strength
float m_interaction_radius
SpatialField distance(const glm::vec3 &anchor, float radius, DistanceMetric metric=DistanceMetric::EUCLIDEAN)
Normalized distance from an anchor point using the specified metric.