Skip to content

Commit 7bde7d9

Browse files
committed
Regenerate Callbacks
1 parent fbb8316 commit 7bde7d9

17 files changed

Lines changed: 39 additions & 40 deletions

src/main/java/volucris/bindings/box2d/AssertFcn.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public int invoke(
6565
return invoke(
6666
new NativeByteArray(condition),
6767
new NativeByteArray(fileName),
68-
lineNumber
68+
lineNumber
6969
);
7070
}
7171

src/main/java/volucris/bindings/box2d/dynamicTree/TreeRayCastCallbackFcn.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ public float invoke(
7070
) {
7171
return invoke(
7272
new RayCastInput(input),
73-
proxyId,
74-
userData,
75-
context
73+
proxyId,
74+
userData,
75+
context
7676
);
7777
}
7878

src/main/java/volucris/bindings/box2d/dynamicTree/TreeShapeCastCallbackFcn.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ public float invoke(
7070
) {
7171
return invoke(
7272
new ShapeCastInput(input),
73-
proxyId,
74-
userData,
75-
context
73+
proxyId,
74+
userData,
75+
context
7676
);
7777
}
7878

src/main/java/volucris/bindings/box2d/world/CastResultFcn.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ public float invoke(
8686
new ShapeId(shapeId),
8787
new Vec2(point),
8888
new Vec2(normal),
89-
fraction,
90-
context
89+
fraction,
90+
context
9191
);
9292
}
9393

src/main/java/volucris/bindings/box2d/world/CustomFilterFcn.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public boolean invoke(
7676
return invoke(
7777
new ShapeId(shapeIdA),
7878
new ShapeId(shapeIdB),
79-
context
79+
context
8080
);
8181
}
8282

src/main/java/volucris/bindings/box2d/world/DrawCircleFcn.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ public void invoke(
6565
) {
6666
invoke(
6767
new Vec2(center),
68-
radius,
69-
color,
70-
context
68+
radius,
69+
color,
70+
context
7171
);
7272
}
7373

src/main/java/volucris/bindings/box2d/world/DrawPointFcn.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ public void invoke(
6565
) {
6666
invoke(
6767
new Vec2(p),
68-
size,
69-
color,
70-
context
68+
size,
69+
color,
70+
context
7171
);
7272
}
7373

src/main/java/volucris/bindings/box2d/world/DrawPolygonFcn.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ public void invoke(
6565
) {
6666
invoke(
6767
new Vec2(vertices),
68-
vertexCount,
69-
color,
70-
context
68+
vertexCount,
69+
color,
70+
context
7171
);
7272
}
7373

src/main/java/volucris/bindings/box2d/world/DrawSegmentFcn.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ public void invoke(
6666
invoke(
6767
new Vec2(p1),
6868
new Vec2(p2),
69-
color,
70-
context
69+
color,
70+
context
7171
);
7272
}
7373

src/main/java/volucris/bindings/box2d/world/DrawSolidCapsuleFcn.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ public void invoke(
6868
invoke(
6969
new Vec2(p1),
7070
new Vec2(p2),
71-
radius,
72-
color,
73-
context
71+
radius,
72+
color,
73+
context
7474
);
7575
}
7676

0 commit comments

Comments
 (0)