Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
482b9a8c
Kaydet (Commit)
482b9a8c
authored
Kas 15, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clean up the descriptions of multi-signature functions so we do the right
thing in the index.
üst
3fc08d23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
15 deletions
+10
-15
libturtle.tex
Doc/lib/libturtle.tex
+10
-15
No files found.
Doc/lib/libturtle.tex
Dosyayı görüntüle @
482b9a8c
...
...
@@ -73,15 +73,13 @@ Set the line width to \var{width}.
\end{funcdesc}
\begin{funcdesc}
{
color
}{
s
}
Set the color by giving a Tk color string.
\end{funcdesc}
\begin{funcdesc}
{
color
}{
(r, g, b)
}
Set the color by giving a RGB tuple, each between 0 and 1.
\end{funcdesc}
\begin{funcdesc}
{
color
}{
r, g, b
}
Set the color by giving the RGB components, each between 0 and 1.
\funclineni
{
color
}{
(r, g, b)
}
\funclineni
{
color
}{
r, g, b
}
Set the pen color. In the first form, the color is specified as a
Tk color specification as a string. The second form specifies the
color as a tuple of the RGB values, each in the range [0..1]. For the
third form, the color is specified giving the RGB values as three
separate parameters (each in the range [0..1]).
\end{funcdesc}
\begin{funcdesc}
{
write
}{
text
\optional
{
, move
}}
...
...
@@ -109,12 +107,9 @@ direction.
\end{funcdesc}
\begin{funcdesc}
{
goto
}{
x, y
}
Go to co-ordinates (
\var
{
x
}
,
\var
{
y
}
).
\end{funcdesc}
\begin{funcdesc}
{
goto
}{
(x, y)
}
Go to co-ordinates (
\var
{
x
}
,
\var
{
y
}
) (specified as a tuple instead of
individually).
\funclineni
{
goto
}{
(x, y)
}
Go to co-ordinates
\var
{
x
}
,
\var
{
y
}
. The co-ordinates may be
specified either as two separate arguments or as a 2-tuple.
\end{funcdesc}
This module also does
\code
{
from math import *
}
, so see the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment