diff options
author | Teravus Ovares | 2008-04-08 01:29:45 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-04-08 01:29:45 +0000 |
commit | d0f77841016291956ff3668b0d67d0a8a56d8f1e (patch) | |
tree | fa9e0c4737c45fb51bee574300e7cd96b68d854f /OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |
parent | Update svn properties. (diff) | |
download | opensim-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 'OpenSim/Region/Physics/OdePlugin/OdePlugin.cs')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 4 |
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 | } |