# Meowbit與海龜繪圖(Kittenblock)

海龜學園是一個設計給小孩子學習編程繪圖的平台。

Meowbit在Kittenblock上也可以玩海龜繪圖。

### Kittenblock編程教學

![](https://kittenbothk.readthedocs.io/en/latest/_images/kbbanner11.png)

#### 海龜積木塊

![](https://kittenbothk.readthedocs.io/en/latest/_images/kb16.png)

#### 海龜移動和繪圖

![](https://kittenbothk.readthedocs.io/en/latest/_images/turtle1.png)

按上記錄填色起點，按A前進，按左或右轉向，最後按下記錄填色終點並填上顏色。

#### 海龜繪畫圓形

![](https://kittenbothk.readthedocs.io/en/latest/_images/turtle2.png)

海龜自動移動到(100,100)，然後畫一個圓圈。

#### 海龜畫點和清屏

```
清屏後會連背景一併清掉，所以我們清屏後再畫一次背景。
```

![](https://kittenbothk.readthedocs.io/en/latest/_images/turtle3.png)

按A畫點，按B清屏。

#### 海龜起筆和落筆。

```
假如我們沒有起筆，海龜的所有移動都會有畫線。相反在起筆之後，海龜的移動不會畫出來，這樣就可以繪畫多個圖形了。
```

![](https://kittenbothk.readthedocs.io/en/latest/_images/turtle4.png)

海龜一次過在(20,20)至(70,70)和(100,70)至(100,120)繪畫兩條線。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sharinghub.kittenbot.hk/mcu/meowbit/coding/meowbit_turtle.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
