|
LibreLogo.xhp hd_980 help.text
|
HEADING (seth)
|
|
|
LibreLogo.xhp par_990 help.text
|
HEADING 0 ; turn north<br/> HEADING 12h ; see above<br/> HEADING [0, 0] ; turn to the top-left corner<br/> HEADING ANY ; turn to a random direction<br/>
|
|
|
LibreLogo.xhp hd_1000 help.text
|
Other turtle commands
|
|
|
LibreLogo.xhp hd_1010 help.text
|
HIDETURTLE (ht)
|
|
|
LibreLogo.xhp par_1020 help.text
|
HIDETURTLE ; hide turtle (until the showturtle command)<br/>
|
|
|
LibreLogo.xhp hd_1030 help.text
|
SHOWTURTLE (st)
|
|
|
LibreLogo.xhp par_1040 help.text
|
SHOWTURTLE ; show turtle<br/>
|
|
|
LibreLogo.xhp hd_1050 help.text
|
HOME
|
|
|
LibreLogo.xhp par_1060 help.text
|
HOME ; reset initial turtle position<br/>
|
|
|
LibreLogo.xhp hd_1070 help.text
|
CLEARSCREEN (cs)
|
|
|
LibreLogo.xhp par_1080 help.text
|
CLEARSCREEN ; remove drawing objects of the document<br/>
|
|
|
LibreLogo.xhp hd_1090 help.text
|
FILL and CLOSE
|
|
|
LibreLogo.xhp par_1100 help.text
|
FILL ; close and fill the actual line shape or points<br/> CLOSE ; close the actual line shape or join the actual points<br/>
|
|
|
LibreLogo.xhp par_1102 help.text
|
Example: filling a regular triangle:
|
|
|
LibreLogo.xhp par_1104 help.text
|
FORWARD 50 LEFT 120 FORWARD 50 FILL<br/>
|
|
|
LibreLogo.xhp par_1106 help.text
|
Example: drawing a regular triangle:
|
|
|
LibreLogo.xhp par_1108 help.text
|
FORWARD 50 LEFT 120 FORWARD 50 CLOSE<br/>
|
|
|
LibreLogo.xhp hd_1110 help.text
|
Pen settings
|
|
|
LibreLogo.xhp hd_1120 help.text
|
PENSIZE (ps)
|
|
|
LibreLogo.xhp par_1130 help.text
|
PENSIZE 100 ; line width is 100 points<br/> PENSIZE ANY ; equivalent of PENSIZE RANDOM 10<br/>
|
|