From e8df1e595566914c32e8d1d8ae3bec60298b8299 Mon Sep 17 00:00:00 2001 From: Sepehr Bayat <bayats1@mcmaster.ca> Date: Mon, 29 Jan 2018 09:05:03 -0500 Subject: [PATCH] Update PointADT.py --- Tutorials/T04-A2Example/src/PointADT.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tutorials/T04-A2Example/src/PointADT.py b/Tutorials/T04-A2Example/src/PointADT.py index 86991526..862ddba2 100644 --- a/Tutorials/T04-A2Example/src/PointADT.py +++ b/Tutorials/T04-A2Example/src/PointADT.py @@ -1,12 +1,12 @@ ## @file pointADT.py -# @author Gurankash Singh +# @author Sepehr # @brief Provides the PointT ADT class for representing 2D points -# @date 30 Jan 2017 +# @date 25 Jan 2018 from math import * ##@brief An ADT that respresents a 2D point -class pointT: +class PointT: ## @brief PointT constructor # @details Initializes a PointT object with a cartesian coordinate -- GitLab