Skip to content

Commit

Permalink
HeightfieldShapeSettings: javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 7, 2025
1 parent 7741b75 commit c7964d0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2024 Stephen Gold
Copyright (c) 2024-2025 Stephen Gold
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -321,7 +321,7 @@ public void setBlockSize(int numRows) {
/**
* Alter the artificial maximum height. (native attribute: mMaxHeightValue)
*
* @param maxHeight the desired height value (default=-MAX_VALUE)
* @param maxHeight the desired height value (default=-1e15)
*/
public void setMaxHeightValue(float maxHeight) {
long settingsVa = va();
Expand All @@ -331,7 +331,7 @@ public void setMaxHeightValue(float maxHeight) {
/**
* Alter the artificial minimum height. (native attribute: mMinHeightValue)
*
* @param minHeight the desired height value (default=MAX_VALUE)
* @param minHeight the desired height value (default=1e15)
*/
public void setMinHeightValue(float minHeight) {
long settingsVa = va();
Expand Down

0 comments on commit c7964d0

Please sign in to comment.