Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/extern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-02-24 13:53:29 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-24 13:53:29 +0400
commitedb04d1461536f214f8afa46cce6b34cdc770afc (patch)
treed433bff864696801559ac7bbee5ef50ba91df954 /extern
parentdd0f151ba95db213a7c97bc7f51285b57b0243fb (diff)
bmesh docs now written in sphinx doc generator.
* http://www.blender.org/documentation/blender_python_api_2_62_0/bmesh.types.html * http://www.blender.org/documentation/blender_python_api_2_62_0/bmesh.utils.html
Diffstat (limited to 'extern')
-rw-r--r--extern/recastnavigation/Detour/Source/DetourStatNavMesh.cpp2
-rw-r--r--extern/recastnavigation/Recast/Source/RecastLayers.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/extern/recastnavigation/Detour/Source/DetourStatNavMesh.cpp b/extern/recastnavigation/Detour/Source/DetourStatNavMesh.cpp
index bf59cd89dda..8da8e2c1e1e 100644
--- a/extern/recastnavigation/Detour/Source/DetourStatNavMesh.cpp
+++ b/extern/recastnavigation/Detour/Source/DetourStatNavMesh.cpp
@@ -566,7 +566,7 @@ float dtStatNavMesh::findDistanceToWall(dtStatPolyRef centerRef, const float* ce
hitPos[2] = vj[2] + (vi[2] - vj[2])*tseg;
}
- // Check to see if teh circle expands to one of the neighbours and expand.
+ // Check to see if the circle expands to one of the neighbours and expand.
for (int i = 0, j = (int)poly->nv-1; i < (int)poly->nv; j = i++)
{
// Skip solid edges.
diff --git a/extern/recastnavigation/Recast/Source/RecastLayers.cpp b/extern/recastnavigation/Recast/Source/RecastLayers.cpp
index 617cf45fe66..2d9658b2bed 100644
--- a/extern/recastnavigation/Recast/Source/RecastLayers.cpp
+++ b/extern/recastnavigation/Recast/Source/RecastLayers.cpp
@@ -368,7 +368,7 @@ bool rcBuildHeightfieldLayers(rcContext* ctx, rcCompactHeightfield& chf,
rcLayerRegion& rj = regs[j];
if (!rj.base) continue;
- // Skip if teh regions are not close to each other.
+ // Skip if the regions are not close to each other.
if (!overlapRange(ri.ymin,ri.ymax+mergeHeight, rj.ymin,rj.ymax+mergeHeight))
continue;
// Skip if the height range would become too large.