Skip to content

Commit c69000f

Browse files
Update particle.h
1 parent 56214b6 commit c69000f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/struct/particle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ struct alignas(32) Particle {
1212

1313
inline void Gravity(Particle& a, Particle& b, real dt)
1414
{
15-
constexpr real G = real(6.67430e-11);
15+
constexpr real G = real(1.0);
1616
real dx = b.x - a.x;
1717
real dy = b.y - a.y;
1818
real dz = b.z - a.z;

0 commit comments

Comments
 (0)