diff options
author | Sean Dague | 2009-02-18 12:56:36 +0000 |
---|---|---|
committer | Sean Dague | 2009-02-18 12:56:36 +0000 |
commit | 383f8b3ac601baef7b2cb322f53fb36b69367286 (patch) | |
tree | f90b2535f102be4f3ba50a41bb2668dc2cb956f2 /OpenSim/Region/ScriptEngine/Shared/Api/Interface | |
parent | remove legacy pre-migration code for mysql grid adapter, who knew this (diff) | |
download | opensim-SC_OLD-383f8b3ac601baef7b2cb322f53fb36b69367286.zip opensim-SC_OLD-383f8b3ac601baef7b2cb322f53fb36b69367286.tar.gz opensim-SC_OLD-383f8b3ac601baef7b2cb322f53fb36b69367286.tar.bz2 opensim-SC_OLD-383f8b3ac601baef7b2cb322f53fb36b69367286.tar.xz |
From: Christopher Yeoh <yeohc@au1.ibm.com>
The attached patch implements osGetDrawStringSize that looks like:
vector osGetDrawStringSize(string contentType, string text, string
fontName, int fontSize)
in LSL. It is meant to be used in conjunction with the osDraw*
functions. It returns accurate information on the size that a given
string will be rendered given the specified font and font size.
This allows for nicely formatted and positioned text on the generated
image.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs index 72bb60c..1150d76 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | |||
@@ -88,6 +88,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | |||
88 | string osSetPenSize(string drawList, int penSize); | 88 | string osSetPenSize(string drawList, int penSize); |
89 | string osSetPenColour(string drawList, string colour); | 89 | string osSetPenColour(string drawList, string colour); |
90 | string osDrawImage(string drawList, int width, int height, string imageUrl); | 90 | string osDrawImage(string drawList, int width, int height, string imageUrl); |
91 | vector osGetDrawStringSize(string contentType, string text, string fontName, int fontSize); | ||
91 | void osSetStateEvents(int events); | 92 | void osSetStateEvents(int events); |
92 | 93 | ||
93 | double osList2Double(LSL_Types.list src, int index); | 94 | double osList2Double(LSL_Types.list src, int index); |