From eb491d2c3601fc4909370f100a802086a80dc043 Mon Sep 17 00:00:00 2001 From: Melanie Date: Tue, 5 Oct 2010 22:56:20 +0100 Subject: Patch to allow other cam angles. Not complete. Thanks, Antont. --- .../CoreModules/World/Warp3DMap/MapImageModule.cs | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/CoreModules/World/Warp3DMap/MapImageModule.cs') diff --git a/OpenSim/Region/CoreModules/World/Warp3DMap/MapImageModule.cs b/OpenSim/Region/CoreModules/World/Warp3DMap/MapImageModule.cs index 49b4364..dab29d0 100644 --- a/OpenSim/Region/CoreModules/World/Warp3DMap/MapImageModule.cs +++ b/OpenSim/Region/CoreModules/World/Warp3DMap/MapImageModule.cs @@ -112,8 +112,21 @@ namespace OpenSim.Region.CoreModules.World.Warp3DMap public Bitmap CreateMapTile() { + Vector3 camPos = new Vector3(127.5f, 127.5f, 221.7025033688163f); + Viewport viewport = new Viewport(camPos, -Vector3.UnitZ, 1024f, 0.1f, (int)Constants.RegionSize, (int)Constants.RegionSize, (float)Constants.RegionSize, (float)Constants.RegionSize); + return CreateMapTile(viewport); + } + + public Bitmap CreateViewImage(Vector3 camPos, Vector3 camDir, float fov, int width, int height) + { + Viewport viewport = new Viewport(camPos, camDir, fov, (float)Constants.RegionSize, 0.1f, width, height); + return CreateMapTile(viewport); + } + + public Bitmap CreateMapTile(Viewport viewport) + { bool drawPrimVolume = true; - bool textureTerrain = true; + bool textureTerrain = false; //true; try { @@ -128,9 +141,6 @@ namespace OpenSim.Region.CoreModules.World.Warp3DMap m_colors.Clear(); - Vector3 camPos = new Vector3(127.5f, 127.5f, 221.7025033688163f); - Viewport viewport = new Viewport(camPos, -Vector3.UnitZ, 1024f, 0.1f, (int)Constants.RegionSize, (int)Constants.RegionSize, (float)Constants.RegionSize, (float)Constants.RegionSize); - int width = viewport.Width; int height = viewport.Height; -- cgit v1.1