Skip to content

Commit b2d98d5

Browse files
author
Alexander Gräfenstein
committed
Readme
1 parent e8b2eef commit b2d98d5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Readme.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,14 +133,15 @@ This will parse the `./ammo/ammo.idl` and generate a `./ammo/ammo.d.ts` as well
133133
134134
The `btVector4` implements the shape of `btVector3` which causes a signature mismatch of the `setValue` method which typescript complains about. Add the following to the `btVector4`
135135
136-
```
137-
void setValue(float x, float y, float z);
136+
```diff
137+
+void setValue(float x, float y, float z);
138138
```
139139
140140
The `btDbvtBroadphase` should derive from `btBroadphaseInterface`
141141
142-
```
143-
interface btDbvtBroadphase: btBroadphaseInterface {
142+
```diff
143+
-interface btDbvtBroadphase {
144+
+interface btDbvtBroadphase: btBroadphaseInterface {
144145
```
145146
146147
# References

0 commit comments

Comments
 (0)