eraseVBL: Difference between revisions
Jump to navigation
Jump to search
(Modified usage) |
(Usage rewritten) |
||
Line 15: | Line 15: | ||
'''Parameters''' | '''Parameters''' | ||
{{param|shapesList|A [[JSON Array]] of [[JSON Object|JSON objects]], one of the latter for each VBL shape.}} | {{param|shapesList|A [[JSON Array]] of [[JSON Object|JSON objects]], one of the latter for each VBL shape.}} | ||
The shapes can be one of Rectangle, Circle, Polygon or Cross. | The shapes can be one of {{code|"Rectangle"}}, {{code|"Circle"}}, {{code|"Polygon"}} or {{code|"Cross"}}. | ||
For {{code|"shape":"Rectangle"}}: | |||
{{param|"x"|Abscissa in pixels.}} | |||
{{param|"y"|Ordinate in pixels.}} | |||
{{param|"w"|Width in pixels.}} | |||
{{param|"h"|Height in pixels.}} | |||
{{param|"r"|Rotation on centre axis in degrees, clockwise.}} | |||
{{param|"fill"|If {{code|1}} fills rectangle, otherwise creates empty shape. '''Optional.'''}} | |||
{{param|"thickness"|Line thickness from {{code|2}} to {{code|n}} pixels. Lower than {{code|2}} or empty defaults to {{code|2}}. Even numbers only (odd numbers get rounded down by one). Can't be bigger than width or height. '''Optional.'''}} | |||
{{param|"scale"|If provided number not {{code|0}}, will scale rectangle by {{code|x}}, ie scale: {{code|2}} is double, scale: {{code|0.5}} is half. '''Optional.'''}}<br /> | |||
: Example:<source lang="mtmacro"> | : Example:<source lang="mtmacro"> | ||
{"shape":"rectangle","x":1743,"y":2198,"w":100,"h":100,"r":45,"fill":1,"thickness":1,"scale":0} | {"shape":"rectangle","x":1743,"y":2198,"w":100,"h":100,"r":45,"fill":1,"thickness":1,"scale":0} | ||
</source><br /> | </source><br /> | ||
For {{code|"shape":"Circle"}}: | |||
{{param|"x"|Abscissa in pixels.}} | |||
{{param|"y"|Ordinate in pixels.}} | |||
{{param|"radius"|In pixels. | |||
{{param|"fill"|If {{code|1}} fills circle, otherwise creates empty shape. '''Optional.'''}} | |||
{{param|"thickness"|Line thickness from {{code|2}} to {{code|n}} pixels. Lower than {{code|2}} or empty defaults to {{code|2}}. Even numbers only (odd numbers get rounded down by one). '''Optional.'''}} | |||
{{param|"sides"|Specifies how many sides the polygon will have to approximate a circle, from {{code|3}} to {{code|100}}.}}<br /> | |||
: Example:<source lang="mtmacro"> | : Example:<source lang="mtmacro"> | ||
{"shape":"circle", "X":50, "Y":100, "radius":200, "sides":12, "thickness":3, "fill":0}</source><br /> | {"shape":"circle", "X":50, "Y":100, "radius":200, "sides":12, "thickness":3, "fill":0}</source><br /> | ||
For {{code|"shape":"Polygon"}}: | |||
{{param|"r"|Rotation on centre axis in degrees, clockwise.}} | |||
{{param|"thickness"|Line thickness from {{code|2}} to {{code|n}} pixels. Lower than {{code|2}} or empty defaults to {{code|2}}. Even numbers only (odd numbers get rounded down by one). '''Optional.'''}} | |||
{{param|"close"| If {{code|1}} then it will close the polygon otherwise it will leave it open. '''Optional.'''}} | |||
{{param|"fill"|If {{code|1}} and {{code|"close"}} is set too fills polygon, otherwise creates empty shape. '''Optional.'''}} | |||
{{param|"points"|[[JSON Array]] of 2 or more {{code|"x"}}, {{code|"y"}} coordinates.}}<br /> | |||
: Example:<source lang="mtmacro"> | : Example:<source lang="mtmacro"> | ||
{"shape":"polygon","r":0,"fill":1,"close":1,"thickness":10,"points":[{"x":1993,"y":1998},{"x":2043,"y":1998},{"x":1993,"y":2148}]}</source><br /> | {"shape":"polygon","r":0,"fill":1,"close":1,"thickness":10,"points":[{"x":1993,"y":1998},{"x":2043,"y":1998},{"x":1993,"y":2148}]}</source><br /> | ||
For {{code|"shape":"Cross"}}: | |||
{{param|"x"|Abscissa in pixels.}} | |||
{{param|"y"|Ordinate in pixels.}} | |||
{{param|"w"|Width in pixels.}} | |||
{{param|"h"|Height in pixels.}} | |||
{{param|"r"|Rotation on centre axis in degrees, clockwise.}} | |||
{{param|"thickness"|Line thickness from {{code|2}} to {{code|n}} pixels. Lower than {{code|2}} or empty defaults to {{code|2}}. Even numbers only (odd numbers get rounded down by one). Can't be bigger than width or height. '''Optional.'''}} | |||
{{param|"scale"|If provided number not {{code|0}}, will scale cross by {{code|x}}, ie scale: {{code|2}} is double, scale: {{code|0.5}} is half. '''Optional.'''}}}}<br /> | |||
: Example:<source lang="mtmacro">{"shape":"cross","x":1593,"y":2198,"w":50,"h":50,"r":22,"thickness":5,"scale":0.75}</source><br /> | : Example:<source lang="mtmacro">{"shape":"cross","x":1593,"y":2198,"w":50,"h":50,"r":22,"thickness":5,"scale":0.75}</source><br /> | ||
Revision as of 09:19, 9 April 2013
This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
This article needs: Lacks examples.
eraseVBL() Function
Note: This function can only be used in a Trusted Macro
• Introduced in version 1.3b89
This function erases VBL shapes.
Usage
eraseVBL(shapesList)
Parameters
shapesList
- A JSON Array of JSON objects, one of the latter for each VBL shape.
The shapes can be one of "Rectangle"
, "Circle"
, "Polygon"
or "Cross"
.
For "shape":"Rectangle"
:
"x"
- Abscissa in pixels."y"
- Ordinate in pixels."w"
- Width in pixels."h"
- Height in pixels."r"
- Rotation on centre axis in degrees, clockwise."fill"
- If1
fills rectangle, otherwise creates empty shape. Optional."thickness"
- Line thickness from2
ton
pixels. Lower than2
or empty defaults to2
. Even numbers only (odd numbers get rounded down by one). Can't be bigger than width or height. Optional."scale"
- If provided number not0
, will scale rectangle byx
, ie scale:2
is double, scale:0.5
is half. Optional.
- Example:
{"shape":"rectangle","x":1743,"y":2198,"w":100,"h":100,"r":45,"fill":1,"thickness":1,"scale":0}
For "shape":"Circle"
:
"x"
- Abscissa in pixels."y"
- Ordinate in pixels."radius"
- In pixels."fill"
- If1
fills circle, otherwise creates empty shape. Optional."thickness"
- Line thickness from2
ton
pixels. Lower than2
or empty defaults to2
. Even numbers only (odd numbers get rounded down by one). Optional."sides"
- Specifies how many sides the polygon will have to approximate a circle, from3
to100
.
- Example:
{"shape":"circle", "X":50, "Y":100, "radius":200, "sides":12, "thickness":3, "fill":0}
For "shape":"Polygon"
:
"r"
- Rotation on centre axis in degrees, clockwise."thickness"
- Line thickness from2
ton
pixels. Lower than2
or empty defaults to2
. Even numbers only (odd numbers get rounded down by one). Optional."close"
- If1
then it will close the polygon otherwise it will leave it open. Optional."fill"
- If1
and"close"
is set too fills polygon, otherwise creates empty shape. Optional."points"
- JSON Array of 2 or more"x"
,"y"
coordinates.
- Example:
{"shape":"polygon","r":0,"fill":1,"close":1,"thickness":10,"points":[{"x":1993,"y":1998},{"x":2043,"y":1998},{"x":1993,"y":2148}]}
For "shape":"Cross"
:
"x"
- Abscissa in pixels."y"
- Ordinate in pixels."w"
- Width in pixels."h"
- Height in pixels."r"
- Rotation on centre axis in degrees, clockwise."thickness"
- Line thickness from2
ton
pixels. Lower than2
or empty defaults to2
. Even numbers only (odd numbers get rounded down by one). Can't be bigger than width or height. Optional."scale"
- If provided number not0
, will scale cross byx
, ie scale:2
is double, scale:0.5
is half. Optional.
- Example:
{"shape":"cross","x":1593,"y":2198,"w":50,"h":50,"r":22,"thickness":5,"scale":0.75}
Example
This example doesn't really do anything.
[h: exampleVariable = "a,b,c"]
[r: exampleFunction(exampleVariable, reverse)]
Returns:
c,b,a