Skip to content

Commit

Permalink
GlobalUniformValues: de-publicize the class
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Aug 24, 2023
1 parent 65b1157 commit 9e33c5c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* Derived from the UniformBufferObject class in Cristian Herrera's
* Vulkan-Tutorial-Java project.
*/
public class GlobalUniformValues {
class GlobalUniformValues {
// *************************************************************************
// fields

Expand Down Expand Up @@ -104,7 +104,7 @@ static int numBytes() {
*
* @param newStrength the desired strength (default=0.1)
*/
public void setAmbientStrength(float newStrength) {
void setAmbientStrength(float newStrength) {
this.ambientStrength = newStrength;
}

Expand All @@ -113,7 +113,7 @@ public void setAmbientStrength(float newStrength) {
*
* @param newColor the desired color (not null, unaffected, default=(1,1,1))
*/
public void setLightColor(Vector3f newColor) {
void setLightColor(Vector3f newColor) {
lightColor.set(newColor);
}

Expand All @@ -123,7 +123,7 @@ public void setLightColor(Vector3f newColor) {
* @param newDirection the desired direction (in worldspace, not null, not
* zero)
*/
public void setLightDirection(Vector3f newDirection) {
void setLightDirection(Vector3f newDirection) {
lightDirectionWorldspace.set(newDirection).normalize();
}

Expand Down

0 comments on commit 9e33c5c

Please sign in to comment.