Skip to content

Commit

Permalink
geom.cpp style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
no-lex committed Feb 27, 2025
1 parent 444cfda commit fc1879e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/shared/geom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -348,4 +348,7 @@ float vec::project_bb(const ivec &min, const ivec &max) const

//ivec

float ivec::dist(const plane &p) const { return x*p.x + y*p.y + z*p.z + p.offset; }
float ivec::dist(const plane &p) const
{
return x*p.x + y*p.y + z*p.z + p.offset;
}

0 comments on commit fc1879e

Please sign in to comment.