mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 03:45:35 +08:00
* Major style changes in libTerrain.Channel - now uses .NET-style naming syntax.
* Issue#218 - Updated mySQL region table.
This commit is contained in:
@@ -46,7 +46,7 @@ namespace libTerrain
|
||||
bmp = new Bitmap(width, height, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
|
||||
}
|
||||
|
||||
public Channel toChannel()
|
||||
public Channel ToChannel()
|
||||
{
|
||||
Channel chan = new Channel(bmp.Width, bmp.Height);
|
||||
|
||||
@@ -63,7 +63,7 @@ namespace libTerrain
|
||||
return chan;
|
||||
}
|
||||
|
||||
public void drawText(string txt, string font, double size)
|
||||
public void DrawText(string txt, string font, double size)
|
||||
{
|
||||
Graphics gd = Graphics.FromImage(bmp);
|
||||
//gd.DrawString(txt,
|
||||
|
||||
Reference in New Issue
Block a user