diff options
author | Melanie | 2010-10-05 23:49:21 +0100 |
---|---|---|
committer | Melanie | 2010-10-05 23:49:21 +0100 |
commit | 5d613231920dd513dfa8c5328c7ce1bfd59a359b (patch) | |
tree | f4eeabcc176b2aedd2050562a75439fa8ce567a1 /OpenSim/Region/CoreModules | |
parent | Revert an accidental default value change (diff) | |
download | opensim-SC_OLD-5d613231920dd513dfa8c5328c7ce1bfd59a359b.zip opensim-SC_OLD-5d613231920dd513dfa8c5328c7ce1bfd59a359b.tar.gz opensim-SC_OLD-5d613231920dd513dfa8c5328c7ce1bfd59a359b.tar.bz2 opensim-SC_OLD-5d613231920dd513dfa8c5328c7ce1bfd59a359b.tar.xz |
Add the view generating method to the image generator interface
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/World/LegacyMap/MapImageModule.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/LegacyMap/MapImageModule.cs b/OpenSim/Region/CoreModules/World/LegacyMap/MapImageModule.cs index 9e6e366..8408bf9 100644 --- a/OpenSim/Region/CoreModules/World/LegacyMap/MapImageModule.cs +++ b/OpenSim/Region/CoreModules/World/LegacyMap/MapImageModule.cs | |||
@@ -545,5 +545,10 @@ namespace OpenSim.Region.CoreModules.World.LegacyMap | |||
545 | 545 | ||
546 | return returnpt; | 546 | return returnpt; |
547 | } | 547 | } |
548 | |||
549 | public Bitmap CreateViewImage(Vector3 camPos, Vector3 camDir, float fov, int width, int height) | ||
550 | { | ||
551 | return null; | ||
552 | } | ||
548 | } | 553 | } |
549 | } | 554 | } |