Skip to content

Commit

Permalink
javadoc fixes (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzaeschke committed Mar 29, 2023
1 parent 95acd97 commit 27b5465
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
- DQUaternion.invert() inverts a quaternion
- DVector3.eqToRadians() and eqToDegrees() convert angles in a DVector3.
- Fixed OSGI bundle info to use Java 1.7 instead of 7.0. [#80](https://github.com/tzaeschke/ode4j/pull/80)
- Removed deprecated `<prerequisites>` tag in `.pom`.

- Removed deprecated `<prerequisites>` tag in `.pom`. [#82](https://github.com/tzaeschke/ode4j/pull/82)
- Fixed some javadoc problems. [#83](https://github.com/tzaeschke/ode4j/pull/83)

0.4.0
=====
Expand Down
2 changes: 2 additions & 0 deletions core/src/main/java/org/ode4j/math/DVector3.java
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,7 @@ public final void eqProd(DMatrix3C m, DVector3C v2) {

/**
* Convert radians to degrees.
* @return (this) vector
*/
public DVector3 eqToDegrees() {
set0( Math.toDegrees(get0()));
Expand All @@ -696,6 +697,7 @@ public DVector3 eqToDegrees() {

/**
* Convert degrees to radians.
* @return (this) vector
*/
public DVector3 eqToRadians() {
set0( Math.toRadians( get0() ) );
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/org/ode4j/ode/DRay.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ public interface DRay extends DGeom {
* they can make a major differences there.
* @return closest hit setting
*/
void setClosestHit (boolean closestHit);
boolean getClosestHit();
void setClosestHit (boolean closestHit);


// // intentionally undefined, don't use these
Expand Down

0 comments on commit 27b5465

Please sign in to comment.