##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 13\13.1583 - No Title.py
# Description: No Title
##############################################################################
def line_tool(self):
self.tool = self.canvas.create_line
def oval_tool(self):
self.tool = self.canvas.create_oval
def rectangle_tool(self):
self.tool = self.canvas.create_rectangle