diff options
author | Jonathan Freedman | 2010-10-05 19:45:37 -0400 |
---|---|---|
committer | Jonathan Freedman | 2010-10-05 19:45:37 -0400 |
commit | 593fc5c87a482d8e97417bde64403b8f94d4f644 (patch) | |
tree | 6417b7874e5cf76e4b4c0c2b499f37efa7140317 /OpenSim/Region/Framework/Interfaces | |
parent | Merge branch 'master' of git://opensimulator.org/git/opensim (diff) | |
parent | Add the view generating method to the image generator interface (diff) | |
download | opensim-SC_OLD-593fc5c87a482d8e97417bde64403b8f94d4f644.zip opensim-SC_OLD-593fc5c87a482d8e97417bde64403b8f94d4f644.tar.gz opensim-SC_OLD-593fc5c87a482d8e97417bde64403b8f94d4f644.tar.bz2 opensim-SC_OLD-593fc5c87a482d8e97417bde64403b8f94d4f644.tar.xz |
Merge branch 'master' of git://opensimulator.org/git/opensim
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/ITerrain.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ITerrain.cs b/OpenSim/Region/Framework/Interfaces/ITerrain.cs index 8aacb35..38cf020 100644 --- a/OpenSim/Region/Framework/Interfaces/ITerrain.cs +++ b/OpenSim/Region/Framework/Interfaces/ITerrain.cs | |||
@@ -26,6 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using OpenSim.Framework; | 28 | using OpenSim.Framework; |
29 | using OpenMetaverse; | ||
29 | 30 | ||
30 | namespace OpenSim.Region.Framework.Interfaces | 31 | namespace OpenSim.Region.Framework.Interfaces |
31 | { | 32 | { |
@@ -74,6 +75,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
74 | public interface IMapImageGenerator | 75 | public interface IMapImageGenerator |
75 | { | 76 | { |
76 | System.Drawing.Bitmap CreateMapTile(); | 77 | System.Drawing.Bitmap CreateMapTile(); |
78 | System.Drawing.Bitmap CreateViewImage(Vector3 camPos, Vector3 camDir, float fov, int width, int height); | ||
77 | byte[] WriteJpeg2000Image(); | 79 | byte[] WriteJpeg2000Image(); |
78 | } | 80 | } |
79 | } | 81 | } |