aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Meshing/Mesh.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Meshmerizer stores dictionary of unique Meshes keyed on construction ↵Dan Lake2009-09-241-58/+29
| | | | | | parameters. CreateMesh() returns a Mesh from the dictionary or creates a new Mesh if it has not been created before. Meshes are never purged from the dictionary. The raw Mesh data is discarded once the memory is pinned for ODE use. All copies of the same prim/mesh use the same pinned memory. ONLY IMPLEMENTED AND TESTED WITH MESHMERIZER AND ODE Signed-off-by: dahlia <dahliaTrimble@gmailDotCom>
* Add copyright headers. Formatting cleanup.Jeff Ames2009-09-031-2/+2
|
* Applying Mantis #4079. Thank you, dslakeMelanie2009-09-011-82/+29
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* * Instead of referencing mesh stuff in the physics plugin.. change the IMesh ↵Teravus Ovares2009-04-111-3/+13
| | | | Interface. (blame prebuild)
* Update meshing code to sync with current PrimMesher.cs on forge.Dahlia Trimble2008-11-291-20/+0
| | | | | | Migrate sculpt meshing code to primMesher version. This should result in more accurate physical sculpted prim proxies. Remove much obsolete code from Region/Physics/Meshing
* refactoring PrimMesher to add viewer compatable features and some code cleanupDahlia Trimble2008-10-101-1/+64
|
* * Make the ode simulation update loop print out the stack if an exception ↵Justin Clarke Casey2008-09-181-4/+0
| | | | occurs (at least, this is what will happen on linux)
* * squash some obvious warningsJustin Clarke Casey2008-08-301-3/+3
| | | | | | | * a couple more remain that preferably the original coders should look at in more detail (obsolete warnings in the ogp module and not overriding warnings in the script engine)
* fixed some ugliness in the conversion from the new mesher format to the old ↵Dahlia Trimble2008-08-291-9/+13
| | | | that should speed up region startup a little and maybe even use less memory if the GC decides to play friendly with the other kids.
* Update svn properties, formatting cleanup.Jeff Ames2008-08-281-1/+1
|
* adds releaseSourceMeshData() method to IMesh and Mesh for freeing mesh data ↵Dahlia Trimble2008-08-271-5/+17
| | | | after conversion to pinned lists.
* Modified Mesh object to allow alternative mesher interfacingDahlia Trimble2008-08-271-15/+59
|
* Commented out the float array "normals" in the Mesh object and all ↵Dahlia Trimble2008-08-221-1/+1
| | | | references to save memory as it was unused
* * Releases Pinned vertex/index list in ODE on next mesh request.Teravus Ovares2008-05-251-3/+11
|
* Formatting cleanup.Jeff Ames2008-03-181-28/+26
|
* * Optimized usingslbsa712007-12-271-24/+18
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* added copyright noticesJeff Ames2007-12-111-0/+28
|
* set svn:eol-styleJeff Ames2007-11-111-213/+213
|
* * Moves the Meshmerizer to a separate pluginTeravus Ovares2007-11-101-0/+213
* Experimental. Linux Prebuild needs testing. * One more update after this to remove the ODEMeshing directory....