Graph

Code

wasRectanglePoint.lsl
///////////////////////////////////////////////////////////////////////////
//    Copyright (C) 2011 Wizardry and Steamworks - License: GNU GPLv3    //
///////////////////////////////////////////////////////////////////////////
vector wasRectanglePoint(float x, float y) {
    x = llPow(-1, 1 + (integer)llFrand(2)) * llFrand(x);
    y = llPow(-1, 1 + (integer)llFrand(2)) * llFrand(y);
    return <x, y, 0>;
}