aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Interface
diff options
context:
space:
mode:
authorUbitUmarov2017-06-25 02:26:36 +0100
committerUbitUmarov2017-06-25 02:26:36 +0100
commit84abdf866a26401e48eff5b25a1ec7f7bf19dc3c (patch)
tree0bf4ec9b2670d9258b2df087e018ebe91c505e6d /OpenSim/Region/ScriptEngine/Shared/Api/Interface
parentadd vectorrender string command ''ScaleTransf x,y;''. this allows scaling of ... (diff)
downloadopensim-SC_OLD-84abdf866a26401e48eff5b25a1ec7f7bf19dc3c.zip
opensim-SC_OLD-84abdf866a26401e48eff5b25a1ec7f7bf19dc3c.tar.gz
opensim-SC_OLD-84abdf866a26401e48eff5b25a1ec7f7bf19dc3c.tar.bz2
opensim-SC_OLD-84abdf866a26401e48eff5b25a1ec7f7bf19dc3c.tar.xz
add respective ossl helper funtion osDrawScaleTransform(string drawList, LSL_Float x, LSL_Float y)
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
index 19cfcc1..f7857da 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
@@ -228,9 +228,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
228 string osDrawFilledRectangle(string drawList, int width, int height); 228 string osDrawFilledRectangle(string drawList, int width, int height);
229 string osDrawPolygon(string drawList, LSL_List x, LSL_List y); 229 string osDrawPolygon(string drawList, LSL_List x, LSL_List y);
230 string osDrawFilledPolygon(string drawList, LSL_List x, LSL_List y); 230 string osDrawFilledPolygon(string drawList, LSL_List x, LSL_List y);
231 string osDrawTranslationTransform(string drawList, LSL_Float x, LSL_Float y);
232 string osDrawRotationTransform(string drawList, LSL_Float x);
233 string osDrawResetTransform(string drawList); 231 string osDrawResetTransform(string drawList);
232 string osDrawRotationTransform(string drawList, LSL_Float x);
233 string osDrawScaleTransform(string drawList, LSL_Float x, LSL_Float y);
234 string osDrawTranslationTransform(string drawList, LSL_Float x, LSL_Float y);
234 string osSetFontName(string drawList, string fontName); 235 string osSetFontName(string drawList, string fontName);
235 string osSetFontSize(string drawList, int fontSize); 236 string osSetFontSize(string drawList, int fontSize);
236 string osSetPenSize(string drawList, int penSize); 237 string osSetPenSize(string drawList, int penSize);