-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
637 additions
and
678 deletions.
There are no files selected for viewing
1,050 changes: 510 additions & 540 deletions
1,050
src/UniRecast.Unity/Assets/Plugins/DotRecast/src/DotRecast.Core/Compression/FastLZ.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/* | ||
Copyright (c) 2009-2010 Mikko Mononen [email protected] | ||
recast4j copyright (c) 2021 Piotr Piastucki [email protected] | ||
DotRecast Copyright (c) 2023 Choi Ikpil [email protected] | ||
|
@@ -21,7 +22,7 @@ 3. This notice may not be removed or altered from any source distribution. | |
|
||
namespace DotRecast.Core | ||
{ | ||
public static class Intersections | ||
public static class RcIntersections | ||
{ | ||
public static bool IntersectSegmentTriangle(RcVec3f sp, RcVec3f sq, RcVec3f a, RcVec3f b, RcVec3f c, out float t) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../DotRecast/src/DotRecast.Detour/InFlag.cs → .../DotRecast.Detour/DtConvexConvexInFlag.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
namespace DotRecast.Detour | ||
{ | ||
public enum InFlag | ||
public enum DtConvexConvexInFlag | ||
{ | ||
Pin, | ||
Qin, | ||
|
2 changes: 1 addition & 1 deletion
2
...cast/src/DotRecast.Detour/Intersection.cs → ...cast.Detour/DtConvexConvexIntersection.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
namespace DotRecast.Detour | ||
{ | ||
public enum Intersection | ||
public enum DtConvexConvexIntersection | ||
{ | ||
None, | ||
Single, | ||
|
Oops, something went wrong.