Skip to content

Commit

Permalink
updated some gui labels
Browse files Browse the repository at this point in the history
  • Loading branch information
jphuse committed Apr 4, 2023
1 parent 97e4d46 commit dc19188
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/Function.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def generateTrace(self):
if self.rearrangeType == RearrangeType.HORNER:
self.traceString = hornerFunctionToStr(self, 1)

x = self.point
x = 0
self.traceValue = eval(self.traceString.replace("^", "**"))

def isSinusoidal(self):
Expand Down
8 changes: 4 additions & 4 deletions build/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -808,17 +808,17 @@ def insertButton(button):

# Bottom Text 2 - Point Estimation
canvas.create_text(
27.125,
30.625,
571.6666870117188,
anchor="nw",
text="Point Est:",
text="Center:",
fill="#FFFFFF",
font=("BitterRoman ExtraBold", 20 * -1)
)

# Bottom Text 3 - Degree of Rounding
canvas.create_text(
44.625,
30.625,
607.4444580078125,
anchor="nw",
text="Degree:",
Expand Down Expand Up @@ -961,7 +961,7 @@ def insertButton(button):
27.0,
394.0,
anchor="nw",
text="Traced Value at Point:",
text="Traced Value at Zero:",
fill="#1F2C5E",
font=("BitterRoman ExtraBold", 24 * -1)
)
Expand Down

0 comments on commit dc19188

Please sign in to comment.