diff options
author | Melanie | 2009-10-12 15:12:15 +0100 |
---|---|---|
committer | Melanie | 2009-10-12 15:12:15 +0100 |
commit | 70553a979e551efc47f56930282c6b01ff4277e1 (patch) | |
tree | 347632a3f51e7eace08e383f17b7f3e5ad218610 /OpenSim/Region/Physics/Meshing/Mesh.cs | |
parent | Merge branch 'master' into vehicles (diff) | |
parent | Optimize ODE mesh by removing sleep. On a region with 100,000 prims and ODE e... (diff) | |
download | opensim-SC_OLD-70553a979e551efc47f56930282c6b01ff4277e1.zip opensim-SC_OLD-70553a979e551efc47f56930282c6b01ff4277e1.tar.gz opensim-SC_OLD-70553a979e551efc47f56930282c6b01ff4277e1.tar.bz2 opensim-SC_OLD-70553a979e551efc47f56930282c6b01ff4277e1.tar.xz |
Merge branch 'master' into vehicles
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Physics/Meshing/Mesh.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Meshing/Mesh.cs b/OpenSim/Region/Physics/Meshing/Mesh.cs index ff1f816..94d926a 100644 --- a/OpenSim/Region/Physics/Meshing/Mesh.cs +++ b/OpenSim/Region/Physics/Meshing/Mesh.cs | |||
@@ -308,7 +308,7 @@ namespace OpenSim.Region.Physics.Meshing | |||
308 | if (path == null) | 308 | if (path == null) |
309 | return; | 309 | return; |
310 | String fileName = name + "_" + title + ".raw"; | 310 | String fileName = name + "_" + title + ".raw"; |
311 | String completePath = Path.Combine(path, fileName); | 311 | String completePath = System.IO.Path.Combine(path, fileName); |
312 | StreamWriter sw = new StreamWriter(completePath); | 312 | StreamWriter sw = new StreamWriter(completePath); |
313 | foreach (Triangle t in m_triangles) | 313 | foreach (Triangle t in m_triangles) |
314 | { | 314 | { |