types: fix missing/incorrect jsdocs #25
Open
+533
−132
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds/fixes JSDocs throughout the project by:
@import
to add missing type references into the appropriate files.In addition to this, there were a couple of other corrections I made to minor issues I discovered during this process:
mouse_joint_c.js
,motor_joint_c.js
andrevolute_joint_c.js
, plain objects were used in lieu of an instance of b2Mat22 for various values ofK
. For consistency with the original source, the JSDocs, and other similar functions, I have corrected these to use b2Mat22 as originally intended.solver_set_c.js
have had their expressions typecast to booleans to be more explicit about what was actually being asserted (but mainly just to satisfy the typescript compiler).