aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Terrain/PaintBrushes/FlattenSphere.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Refactored Environment/Modules directory - modules now reside in their own ↵Adam Frisby2008-04-301-127/+0
| | | | | | | | directory with any associated module-specific classes. * Each module directory is currently inside one of the following category folders: Agent (Anything relating to do with Client<->Server communications.), Avatar (Anything to do with the avatar or presence inworld), Framework (Classes modules can use), Grid (Grid traffic, new OGS2 grid comms), Scripting (Scripting functions, etc), World (The enrivonment/scene, IE Sun/Tree modules.) * This should be moved into a seperate project file.
* * Terrain Module code has been reformatted to comply with guidelines.Adam Frisby2008-04-211-8/+8
| | | | | * Fixed a variety of code quality issues. (Yes, I've found ReSharper.)
* Comment out unused private methods.Jeff Ames2008-03-251-32/+33
|
* Formatting cleanup.Jeff Ames2008-03-181-26/+26
|
* * Refactored some terrain brushes to move out some common functions into ↵Adam Frisby2008-03-121-0/+2
| | | | | | | TerrainUtil class. More needs doing. * Adjusted strength of brushes to Math.Pow(2,size), this should in theory work closer to how it was before.
* * New Terrain Module (disabled, search for 'usingTerrainModule = false' to ↵Adam Frisby2008-03-051-2/+2
| | | | | | | | | | | reenable) * *Much* faster terraforming (woot!) * New "Brushes" design, so you can create custom terraforming brushes then apply those inplace of the standard tools. (ie an Erode Brush for example) * New specialised "Flood Brushes" to do large area effects, ie, raise-area, now takes a bitmap rather than repeats the ordinary raise brush a thousand times. * New modular file Load/Save systems -- write importers/exporters for multiple formats without having to hard code the whole thing in. * Coming soon - effects system, ie the old Erosion functions, etc. for one-shot effects.
* Added copyright heaaders. Minor cleanup.Jeff Ames2008-03-041-2/+2
|
* * Removed a bunch of compiler warnings.Adam Frisby2008-03-031-1/+0
|
* Updated svn properties.Jeff Ames2008-03-031-124/+124
|
* * Removed and sorted using clauses in a number of files.Adam Frisby2008-03-031-0/+125
* Cleaned up ITerrainChannel * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Paint Brushes * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Fill Brushes * Implemented Export functionality for RAW32 terrain loader * Implemented Import/Export for SLRAW terrain loader * Implemented Export for JPEG terrain loader