aboutsummaryrefslogtreecommitdiff
path: root/PhysX_3.4/Documentation/PhysXGuide/Manual/Geometry.html
diff options
context:
space:
mode:
Diffstat (limited to 'PhysX_3.4/Documentation/PhysXGuide/Manual/Geometry.html')
-rw-r--r--PhysX_3.4/Documentation/PhysXGuide/Manual/Geometry.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/PhysX_3.4/Documentation/PhysXGuide/Manual/Geometry.html b/PhysX_3.4/Documentation/PhysXGuide/Manual/Geometry.html
index c6eb2105..ac98ab4a 100644
--- a/PhysX_3.4/Documentation/PhysXGuide/Manual/Geometry.html
+++ b/PhysX_3.4/Documentation/PhysXGuide/Manual/Geometry.html
@@ -706,7 +706,7 @@ The toolkit helper function PxToolkit::createConvexMeshSafe illustrates the most
</div>
<div class="section" id="heightfield-modification">
<h3>Heightfield Modification<a class="headerlink" href="#heightfield-modification" title="Permalink to this headline">ΒΆ</a></h3>
-<p>Heightfield samples can be modified at runtime in rectangular blocks. In the following code snippet we create a HF and modify it's samples:</p>
+<p>Heightfield samples can be modified at runtime in rectangular blocks. In the following code snippet we create a HF and modify its samples:</p>
<div class="highlight-c++"><div class="highlight"><pre><span class="c1">// create a 5x5 HF with height 100 and materials 2,3</span>
<span class="n">PxHeightFieldSample</span> <span class="n">samples1</span><span class="p">[</span><span class="mi">25</span><span class="p">];</span>
<span class="k">for</span> <span class="p">(</span><span class="n">PxU32</span> <span class="n">i</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="n">i</span> <span class="o">&lt;</span> <span class="mi">25</span><span class="p">;</span> <span class="n">i</span> <span class="o">++</span><span class="p">)</span>