diff options
author | Dahlia Trimble | 2008-06-21 08:50:56 +0000 |
---|---|---|
committer | Dahlia Trimble | 2008-06-21 08:50:56 +0000 |
commit | 7b4991430b1667ebdab50daa94f23fde958140f6 (patch) | |
tree | 6795dcb352c7b84615847b92c7a6a6a16b4e59fd /OpenSim/Region/Physics/OdePlugin | |
parent | * Persists region banlists across reboots for the sqlite datastore also now. (diff) | |
download | opensim-SC_OLD-7b4991430b1667ebdab50daa94f23fde958140f6.zip opensim-SC_OLD-7b4991430b1667ebdab50daa94f23fde958140f6.tar.gz opensim-SC_OLD-7b4991430b1667ebdab50daa94f23fde958140f6.tar.bz2 opensim-SC_OLD-7b4991430b1667ebdab50daa94f23fde958140f6.tar.xz |
Changes selection criteria to allow meshing of more sphere prim configurations.
Adds comments to some functions in Meshmerizer.cs.
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 81e03ca..edb6375 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -1547,7 +1547,10 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1547 | 1547 | ||
1548 | if (pbs.ProfileShape == ProfileShape.Circle && pbs.PathCurve == (byte)Extrusion.Straight) | 1548 | if (pbs.ProfileShape == ProfileShape.Circle && pbs.PathCurve == (byte)Extrusion.Straight) |
1549 | return true; | 1549 | return true; |
1550 | 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)) | 1550 | //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)) |
1551 | // return true; | ||
1552 | |||
1553 | if (pbs.ProfileShape == ProfileShape.HalfCircle && pbs.PathCurve == (byte) Extrusion.Curve1) | ||
1551 | return true; | 1554 | return true; |
1552 | 1555 | ||
1553 | // test for torus | 1556 | // test for torus |