forked from bit/DotRecastNetSim
change
This commit is contained in:
parent
7e4150d7ee
commit
6eb503c287
|
@ -507,10 +507,10 @@ namespace DotRecast.Core
|
||||||
|
|
||||||
public static float triArea2D(Vector3f a, Vector3f b, Vector3f c)
|
public static float triArea2D(Vector3f a, Vector3f b, Vector3f c)
|
||||||
{
|
{
|
||||||
float abx = b[0] - a[0];
|
float abx = b.x - a.x;
|
||||||
float abz = b[2] - a[2];
|
float abz = b.z - a.z;
|
||||||
float acx = c[0] - a[0];
|
float acx = c.x - a.x;
|
||||||
float acz = c[2] - a[2];
|
float acz = c.z - a.z;
|
||||||
return acx * abz - abx * acz;
|
return acx * abz - abx * acz;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue