aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-04-08 01:29:45 +0000
committerTeravus Ovares2008-04-08 01:29:45 +0000
commitd0f77841016291956ff3668b0d67d0a8a56d8f1e (patch)
treefa9e0c4737c45fb51bee574300e7cd96b68d854f /OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
parentUpdate svn properties. (diff)
downloadopensim-SC_OLD-d0f77841016291956ff3668b0d67d0a8a56d8f1e.zip
opensim-SC_OLD-d0f77841016291956ff3668b0d67d0a8a56d8f1e.tar.gz
opensim-SC_OLD-d0f77841016291956ff3668b0d67d0a8a56d8f1e.tar.bz2
opensim-SC_OLD-d0f77841016291956ff3668b0d67d0a8a56d8f1e.tar.xz
* Adds poor support for ellipsis in the Meshmerizer. This will get better.. notice the huge nasty facets! Regular spheres still work as they did.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/OdePlugin.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
index 33b9ce3..9b8f4af 100644
--- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
+++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
@@ -1449,9 +1449,11 @@ namespace OpenSim.Region.Physics.OdePlugin
1449 1449
1450 if (pbs.ProfileShape == ProfileShape.Circle && pbs.PathCurve == (byte)Extrusion.Straight) 1450 if (pbs.ProfileShape == ProfileShape.Circle && pbs.PathCurve == (byte)Extrusion.Straight)
1451 return true; 1451 return true;
1452 if (pbs.ProfileShape == ProfileShape.HalfCircle && pbs.PathCurve == (byte)Extrusion.Curve1 && (pbs.Scale.X != pbs.Scale.Y || pbs.Scale.Y != pbs.Scale.Z || pbs.Scale.Z != pbs.Scale.X))
1453 return true;
1452 1454
1453 if (pbs.ProfileShape == ProfileShape.EquilateralTriangle) 1455 if (pbs.ProfileShape == ProfileShape.EquilateralTriangle)
1454 return true; 1456 return true;
1455 1457
1456 return false; 1458 return false;
1457 } 1459 }