Skip to content

Commit

Permalink
glue: whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 9, 2024
1 parent 9fce227 commit b3c9f51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/native/glue/co/CollideShapeBodyCollector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ JNIEXPORT void JNICALL Java_com_github_stephengold_joltjni_CollideShapeBodyColle
= reinterpret_cast<CollideShapeBodyCollector *> (collectorVa);
TRACE_DELETE("CollideShapeBodyCollector", pCollector)
delete pCollector;
}
}
3 changes: 2 additions & 1 deletion src/main/native/glue/r/RRayCast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ using namespace JPH;
* Signature: (DDDFFF)J
*/
JNIEXPORT jlong JNICALL Java_com_github_stephengold_joltjni_RRayCast_createRRayCast
(JNIEnv *, jclass, jdouble xx, jdouble yy, jdouble zz, jfloat dx, jfloat dy, jfloat dz) {
(JNIEnv *, jclass, jdouble xx, jdouble yy, jdouble zz,
jfloat dx, jfloat dy, jfloat dz) {
const RVec3 startLocation(xx, yy, zz);
const Vec3 direction(dx, dy, dz);
RRayCast * const pResult = new RRayCast(startLocation, direction);
Expand Down

0 comments on commit b3c9f51

Please sign in to comment.