From 4702661e0d115ae84d645aa14cba2a444d42c628 Mon Sep 17 00:00:00 2001 From: javalang Date: Thu, 15 Nov 2018 19:35:57 +0100 Subject: [PATCH] Update readme.md --- examples/TFTShape/readme.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/TFTShape/readme.md b/examples/TFTShape/readme.md index 1541d6a..70ad3b6 100644 --- a/examples/TFTShape/readme.md +++ b/examples/TFTShape/readme.md @@ -42,12 +42,10 @@ Repeating the steps above for the minutes and seconds hand and we are ready. And int pivy=35; //hour-hand TFTShape hand=TFTShape::buildNgon(5,60); - hand.setScale(.08,.8); - hand.setPivot(0,pivy); - hand.setRotation(170); + hand.setScale(.08,.8); hand.setPivot(0,pivy); hand.setRotation(170); hand.fill(&tft2,120,160-pivy,TFT_GREY); //minutes-hand - hand.setScale(.08,1); hand.setRotation(240); + hand.setScale(.08,1); hand.setRotation(240); hand.fill(&tft2,120,160-pivy,TFT_LIGHTGREY); //seconds-hand hand.setScale(.03,1); hand.setRotation(30);