creates text at a 3D position
Syntax
hText = swplot.text(r, string)
hText = swplot.text(r, string, fontSize)
hText = swplot.text(handle, ...)
Description
hText = swplot.text(r, string)
creates single or multiple text in 3D
space.
hPatch = swplot.text(handle, ...)
adds the generated text object to a
given axis referenced by handle
.
Input Arguments
handle
- Handle of an axis object, default value is gca.
r
- Coordinate of the center of the text for a single text or matrix with dimensions for multiple text.
string
- String that contains the text or cell of strings when multiple text is drawn.
fontSize
- Font size in pt, default value is stored in
swpref.getpref('fontsize')
.