Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #65895

Re: Drawing polygons in python turtle

Path csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed3a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <python-python-list@m.gmane.org>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.005
X-Spam-Evidence '*H*': 0.99; '*S*': 0.00; 'patterns': 0.04; 'canvas': 0.07; 'tkinter': 0.07; 'turtle': 0.07; 'occasionally': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.11; 'jan': 0.12; 'emerge': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'reedy': 0.16; 'subject:Drawing': 0.16; 'subject:turtle': 0.16; 'subject:python': 0.16; 'language': 0.16; 'wrote:': 0.18; 'drawing': 0.19; 'header :User-Agent:1': 0.23; 'stick': 0.24; 'header:X-Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'easier': 0.31; 'another': 0.32; '(including': 0.33; 'bugs': 0.33; 'but': 0.35; 'there': 0.35; 'limitations': 0.36; 'module.': 0.36; 'actions': 0.38; 'version,': 0.38; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'moving': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'introduced': 0.61; 'received:173': 0.61; 'simple': 0.61; 'email addr:gmail.com': 0.63; 'such': 0.63; 'field': 0.63; 'avoids': 0.84; 'received:fios.verizon.net': 0.84; 'discovering': 0.91; 'walking': 0.91; 'imagine': 0.93; 'directly.': 0.95
X-Injected-Via-Gmane http://gmane.org/
To python-list@python.org
From Terry Reedy <tjreedy@udel.edu>
Subject Re: Drawing polygons in python turtle
Date Tue, 11 Feb 2014 04:35:50 -0500
References <4fa08222-582c-4585-b945-e67468c66f6d@googlegroups.com> <0c7e98b6-b3db-472e-ac6b-73a8010a7892@googlegroups.com> <c91407c6-6bef-401b-b4ad-cd6be139def7@googlegroups.com> <97ec9cf6-ec3c-4bdc-9b9b-23e4a0025eb0@googlegroups.com> <f9a247a3-17f0-444a-b690-bfcc171fd682@googlegroups.com> <9ada3f87-6e4f-4b4e-8dc0-b954af46284e@googlegroups.com> <a7fedbe6-9087-4951-8da4-dfbb34be2776@googlegroups.com> <ec8782d1-2475-4fd4-a375-7bee69d3f5f7@googlegroups.com>
Mime-Version 1.0
Content-Type text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding 7bit
X-Gmane-NNTP-Posting-Host pool-173-75-254-207.phlapa.fios.verizon.net
User-Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0
In-Reply-To <ec8782d1-2475-4fd4-a375-7bee69d3f5f7@googlegroups.com>
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.6655.1392111385.18130.python-list@python.org> (permalink)
Lines 18
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1392111385 news.xs4all.nl 2935 [2001:888:2000:d::a6]:46418
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:65895

Show key headers only | View raw


On 2/10/2014 10:01 PM, geniusrko@gmail.com wrote:
> Is there a better way of drawing such as another modules

Logo is a drawing language designed for kids who do not know geometry 
but can imagine walking around on a dirt field and occasionally turning 
while dragging a stick or dripping paint. Part of the charm is 
discovering the patterns that emerge when simple actions are repeated.

The Python version, turtle, is built on top of tkinter and its Canvas 
widget. Since I *do* know coordinate geometry and don't care about the 
moving animal metaphor, I find it easier to use Canvas directly. This 
avoids the bugs and limitations (including speed) introduced by the 
turtle module.


-- 
Terry Jan Reedy

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Drawing polygons in python turtle geniusrko@gmail.com - 2014-02-10 15:44 -0800
  Re:Drawing polygons in python turtle Dave Angel <davea@davea.name> - 2014-02-10 19:00 -0500
  Re: Drawing polygons in python turtle Asaf Las <roegltd@gmail.com> - 2014-02-10 16:23 -0800
    Re: Drawing polygons in python turtle Asaf Las <roegltd@gmail.com> - 2014-02-10 16:34 -0800
      Re: Drawing polygons in python turtle geniusrko@gmail.com - 2014-02-10 18:13 -0800
        Re: Drawing polygons in python turtle Asaf Las <roegltd@gmail.com> - 2014-02-10 18:49 -0800
          Re: Drawing polygons in python turtle geniusrko@gmail.com - 2014-02-10 18:51 -0800
            Re: Drawing polygons in python turtle Asaf Las <roegltd@gmail.com> - 2014-02-10 18:59 -0800
              Re: Drawing polygons in python turtle geniusrko@gmail.com - 2014-02-10 19:01 -0800
                Re: Drawing polygons in python turtle Asaf Las <roegltd@gmail.com> - 2014-02-10 19:03 -0800
                Re: Drawing polygons in python turtle geniusrko@gmail.com - 2014-02-10 19:06 -0800
                Re: Drawing polygons in python turtle Asaf Las <roegltd@gmail.com> - 2014-02-10 19:17 -0800
                Re: Drawing polygons in python turtle geniusrko@gmail.com - 2014-02-10 19:19 -0800
                Re: Drawing polygons in python turtle Asaf Las <roegltd@gmail.com> - 2014-02-10 19:23 -0800
                Re: Drawing polygons in python turtle Terry Reedy <tjreedy@udel.edu> - 2014-02-11 04:35 -0500
        Re: Drawing polygons in python turtle Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2014-02-11 08:17 -0500

csiph-web