Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2021 jMonkeyEngine
* Copyright (c) 2009-2022 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -1580,7 +1580,7 @@ else if (quadrant == 1) {
* Find what terrain patches need normal recalculations and update
* their normals;
*/
protected void fixNormals(BoundingBox affectedArea) {
public void fixNormals(BoundingBox affectedArea) {
if (children == null)
return;

Expand All @@ -1601,7 +1601,7 @@ protected void fixNormals(BoundingBox affectedArea) {
/**
* fix the normals on the edge of the terrain patches.
*/
protected void fixNormalEdges(BoundingBox affectedArea) {
public void fixNormalEdges(BoundingBox affectedArea) {
if (children == null)
return;

Expand Down